# msh-console dynamic library by praticamentetilde (Claudio Maggioni) # licensed with "The Unlicense" project(msh-console-library) cmake_minimum_required(VERSION 2.8) # Create a library which includes the source listed. # The extension is already found. Any number of sources could be listed here. SET(CMAKE_CXX_FLAGS "-std=c++11") add_library (mshconsole SHARED command.cpp commandexecutor.cpp commandexecutor.h command.h commands.cpp shell.cpp shell.h)