10 lines
308 B
CMake
10 lines
308 B
CMake
add_executable(sandbox sandbox.cpp)
|
|
add_executable(sandbox_json sandbox_json.cpp)
|
|
add_executable(sandbox_rtti sandbox_rtti.cpp)
|
|
add_executable(sandbox_vs sandbox_vs.cpp)
|
|
|
|
if(Boost_FOUND)
|
|
add_executable(performance performance.cpp)
|
|
target_link_libraries(performance ${Boost_LIBRARIES})
|
|
endif(Boost_FOUND)
|