CMakeLists.txt 431 B

1234567891011121314151617
  1. INCLUDE_DIRECTORIES(
  2. ${CMAKE_SOURCE_DIR}/src
  3. ${Boost_INCLUDE_DIRS})
  4. LINK_DIRECTORIES()
  5. ADD_EXECUTABLE(artis-tests test.cpp)
  6. TARGET_LINK_LIBRARIES(artis-tests artis-lib ${Boost_LIBRARIES})
  7. INSTALL(TARGETS artis-tests DESTINATION bin)
  8. ADD_EXECUTABLE(artis-test-context test-context.cpp)
  9. TARGET_LINK_LIBRARIES(artis-test-context artis-lib ${Boost_LIBRARIES})
  10. INSTALL(TARGETS artis-test-context DESTINATION bin)