2
0
mirror of https://github.com/boostorg/yap.git synced 2026-02-26 05:12:13 +00:00
Files
yap/example/CMakeLists.txt
2016-12-07 20:01:19 -06:00

14 lines
282 B
CMake

include_directories(${CMAKE_HOME_DIRECTORY})
macro(add_sample name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} c++)
endmacro()
add_sample(hello_world)
add_sample(calc1)
add_sample(calc2a)
add_sample(calc2b)
add_sample(calc3)
add_sample(lazy_vector)