2016-03-16 20:15:24 +00:00
|
|
|
# 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")
|
2016-03-18 17:48:16 +00:00
|
|
|
add_library (mshconsole SHARED command.cpp commandexecutor.cpp commandexecutor.h command.h commands.cpp shell.cpp shell.h)
|