CMakeLists.txt 508 B

1234567891011121314151617
  1. # Copyright 2018 Peter Dimov
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
  4. cmake_minimum_required(VERSION 3.5)
  5. project(cmake_subdir_test LANGUAGES CXX)
  6. add_subdirectory(../.. boostorg/mp11)
  7. add_executable(main main.cpp)
  8. target_link_libraries(main Boost::mp11)
  9. enable_testing()
  10. add_test(NAME main COMMAND main)
  11. add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)