mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
12 lines
285 B
CMake
12 lines
285 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)
|