10 lines
319 B
CMake
10 lines
319 B
CMake
|
# snippet for showing how the library works
|
||
|
|
||
|
project(msh-console-library-snippet)
|
||
|
cmake_minimum_required(VERSION 2.8)
|
||
|
|
||
|
SET(CMAKE_CXX_FLAGS "-std=c++11")
|
||
|
add_executable (../../build-msh-console/msh-console-test main.cpp cmds.cpp)
|
||
|
target_link_libraries (../../build-msh-console/msh-console-test LINK_PUBLIC msh-console)
|
||
|
|