1234567891011121314151617181920 |
- INCLUDE_DIRECTORIES(
- ${CMAKE_SOURCE_DIR}/src
- ${ARTIS_INCLUDE_DIRS}
- ${Boost_INCLUDE_DIRS})
- LINK_DIRECTORIES()
- ADD_EXECUTABLE(common_bag_tests common_bag.cpp)
- ADD_EXECUTABLE(common_context_tests common_context.cpp)
- ADD_EXECUTABLE(common_observe_tests common_observe.cpp)
- ADD_EXECUTABLE(common_state_tests common_state.cpp)
- ADD_EXECUTABLE(common_value_tests common_value.cpp)
- ADD_EXECUTABLE(kernel_pdevs_simulator_tests kernel_pdevs_simulator.cpp)
- TARGET_LINK_LIBRARIES(common_bag_tests ${Boost_LIBRARIES} artislib)
- TARGET_LINK_LIBRARIES(common_context_tests ${Boost_LIBRARIES} artislib)
- TARGET_LINK_LIBRARIES(common_observe_tests ${Boost_LIBRARIES} artislib)
- TARGET_LINK_LIBRARIES(common_state_tests ${Boost_LIBRARIES} artislib)
- TARGET_LINK_LIBRARIES(common_value_tests ${Boost_LIBRARIES} artislib)
- TARGET_LINK_LIBRARIES(kernel_pdevs_simulator_tests ${Boost_LIBRARIES} artislib)
|