2014-03-25 09:07:38 +04:00
|
|
|
add_sources(parse.cpp)
|
2012-05-20 00:55:13 +04:00
|
|
|
add_executable(parse parse.cpp)
|
|
|
|
|
target_link_libraries(parse yaml-cpp)
|
2015-04-27 23:58:38 +03:00
|
|
|
set_target_properties(parse PROPERTIES COMPILE_FLAGS "-std=c++11")
|
2012-05-24 00:30:03 +04:00
|
|
|
|
2014-03-25 09:02:16 +04:00
|
|
|
add_sources(sandbox.cpp)
|
2012-05-20 10:46:08 +04:00
|
|
|
add_executable(sandbox sandbox.cpp)
|
|
|
|
|
target_link_libraries(sandbox yaml-cpp)
|
2015-04-27 23:58:38 +03:00
|
|
|
set_target_properties(sandbox PROPERTIES COMPILE_FLAGS "-std=c++11")
|
2012-09-16 03:29:07 +04:00
|
|
|
|
2014-03-25 09:02:16 +04:00
|
|
|
add_sources(read.cpp)
|
2012-09-16 03:29:07 +04:00
|
|
|
add_executable(read read.cpp)
|
|
|
|
|
target_link_libraries(read yaml-cpp)
|
2015-04-27 23:58:38 +03:00
|
|
|
set_target_properties(read PROPERTIES COMPILE_FLAGS "-std=c++11")
|