• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2018, 2019 Peter Dimov
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
4
5cmake_minimum_required(VERSION 3.5)
6
7if(POLICY CMP0074)
8  cmake_policy(SET CMP0074 NEW)
9endif()
10
11project(CmakeConfigHeadersTest LANGUAGES CXX)
12
13include(${CMAKE_CURRENT_LIST_DIR}/../BoostVersion.cmake)
14
15set(BOOST_HINTS)
16
17if(USE_STAGED_BOOST)
18  set(BOOST_HINTS HINTS ../../../../stage)
19endif()
20
21find_package(Boost ${BOOST_VERSION} EXACT REQUIRED ${BOOST_HINTS})
22
23# Using `include_directories` is bad practice, done here for
24# testing purposes. The right, "modern CMake", thing to do is
25# `target_link_libraries(main Boost::headers)`.
26
27include_directories(${Boost_INCLUDE_DIRS})
28
29add_executable(main quick.cpp)
30
31enable_testing()
32add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)
33
34add_test(main main)
35