Files
yaml-cpp/util/CMakeLists.txt
T

17 lines
524 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.5)
2014-03-25 00:07:38 -05:00
add_sources(parse.cpp)
2012-05-19 15:55:13 -05:00
add_executable(parse parse.cpp)
target_link_libraries(parse yaml-cpp)
set_target_properties(parse PROPERTIES COMPILE_FLAGS "-std=c++11")
2012-05-23 15:30:03 -05:00
2014-03-25 00:02:16 -05:00
add_sources(sandbox.cpp)
2012-05-20 01:46:08 -05:00
add_executable(sandbox sandbox.cpp)
target_link_libraries(sandbox yaml-cpp)
set_target_properties(sandbox PROPERTIES COMPILE_FLAGS "-std=c++11")
2014-03-25 00:02:16 -05:00
add_sources(read.cpp)
add_executable(read read.cpp)
target_link_libraries(read yaml-cpp)
set_target_properties(read PROPERTIES COMPILE_FLAGS "-std=c++11")