yaml-cpp/util/CMakeLists.txt
Azamat H. Hackimov 4b1054e1aa Added CMake's checks for C++11 standards
Raised minimal version of CMake to 3.1, since on old systems there no
decent compilers that supports c++11.

Closes #377.
2018-02-27 10:45:55 +05:00

13 lines
286 B
CMake

add_sources(parse.cpp)
add_executable(parse parse.cpp)
target_link_libraries(parse yaml-cpp)
add_sources(sandbox.cpp)
add_executable(sandbox sandbox.cpp)
target_link_libraries(sandbox yaml-cpp)
add_sources(read.cpp)
add_executable(read read.cpp)
target_link_libraries(read yaml-cpp)