mirror of
https://github.com/RPCS3/cereal.git
synced 2025-03-05 22:18:31 +00:00
15 lines
436 B
CMake
15 lines
436 B
CMake
add_subdirectory(sandbox_shared_lib)
|
|
|
|
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)
|
|
target_link_libraries(sandbox_vs sandbox_vs_dll)
|
|
include_directories(sandbox_shared_lib)
|
|
|
|
if(Boost_FOUND)
|
|
add_executable(performance performance.cpp)
|
|
target_link_libraries(performance ${Boost_LIBRARIES})
|
|
endif(Boost_FOUND)
|