~singpolyma/biboumi

3497b330dc4aa848582da085e94ac20e6871731e — Florent Le Coz 7 years ago 5da0158
If catch.hpp is found in tests/, use it without cloning the git repo
1 files changed, 8 insertions(+), 5 deletions(-)

M CMakeLists.txt
M CMakeLists.txt => CMakeLists.txt +8 -5
@@ 169,6 169,7 @@ if(USE_DATABASE)
  target_link_libraries(test_suite
  database)
endif()

include(ExternalProject)
ExternalProject_Add(catch
  GIT_REPOSITORY "https://github.com/philsquared/Catch.git"


@@ 177,13 178,15 @@ ExternalProject_Add(catch
  CONFIGURE_COMMAND ""
  BUILD_COMMAND ""
  INSTALL_COMMAND ""
)
  )
set_target_properties(catch PROPERTIES EXCLUDE_FROM_ALL TRUE)
ExternalProject_Get_Property(catch SOURCE_DIR)
target_include_directories(test_suite
  PUBLIC "${SOURCE_DIR}/include/"
)
add_dependencies(test_suite catch)
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/tests/catch.hpp)
  target_include_directories(test_suite
    PUBLIC "${SOURCE_DIR}/include/"
    )
  add_dependencies(test_suite catch)
endif()
add_custom_target(check COMMAND "test_suite"
  DEPENDS test_suite)