CMakeLists.txt 904 B

1234567891011121314151617181920
  1. INCLUDE_DIRECTORIES(
  2. ${CMAKE_SOURCE_DIR}/src
  3. ${ARTIS_INCLUDE_DIRS}
  4. ${Boost_INCLUDE_DIRS})
  5. LINK_DIRECTORIES()
  6. ADD_EXECUTABLE(common_bag_tests common_bag.cpp)
  7. ADD_EXECUTABLE(common_context_tests common_context.cpp)
  8. ADD_EXECUTABLE(common_observe_tests common_observe.cpp)
  9. ADD_EXECUTABLE(common_state_tests common_state.cpp)
  10. ADD_EXECUTABLE(common_value_tests common_value.cpp)
  11. ADD_EXECUTABLE(kernel_pdevs_simulator_tests kernel_pdevs_simulator.cpp)
  12. TARGET_LINK_LIBRARIES(common_bag_tests ${Boost_LIBRARIES} artislib)
  13. TARGET_LINK_LIBRARIES(common_context_tests ${Boost_LIBRARIES} artislib)
  14. TARGET_LINK_LIBRARIES(common_observe_tests ${Boost_LIBRARIES} artislib)
  15. TARGET_LINK_LIBRARIES(common_state_tests ${Boost_LIBRARIES} artislib)
  16. TARGET_LINK_LIBRARIES(common_value_tests ${Boost_LIBRARIES} artislib)
  17. TARGET_LINK_LIBRARIES(kernel_pdevs_simulator_tests ${Boost_LIBRARIES} artislib)