mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
7 lines
209 B
CMake
7 lines
209 B
CMake
set(FILES main.cpp tests.cpp)
|
|
include_directories(${YAML_CPP_SOURCE_DIR}/include)
|
|
link_directories(${YAML_CPP_BINARY_DIR}/bin)
|
|
|
|
add_executable(yaml-reader ${FILES})
|
|
target_link_libraries(yaml-reader yaml-cpp)
|