1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# Copyright 2018-2020 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
cmake_minimum_required(VERSION 3.5)
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
project(CmakeConfigPythonTest LANGUAGES CXX)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostVersion.cmake)
find_package(PythonLibs ${USE_PYTHON_VERSION} REQUIRED)
set(BOOST_HINTS)
if(USE_STAGED_BOOST)
set(BOOST_HINTS HINTS ../../../../stage)
endif()
set(component python)
if(USE_PYTHON_COMPONENT)
set(component ${USE_PYTHON_COMPONENT})
find_package(Boost ${BOOST_VERSION} EXACT REQUIRED COMPONENTS ${component} ${BOOST_HINTS})
else()
# use the found Python version in case more than one Boost.Python is installed
set(Boost_PYTHON_VERSION ${PYTHONLIBS_VERSION_STRING})
if(USE_BOOST_PACKAGE)
find_package(Boost ${BOOST_VERSION} EXACT REQUIRED COMPONENTS python ${BOOST_HINTS})
else()
find_package(boost_python ${BOOST_VERSION} EXACT CONFIG REQUIRED ${BOOST_HINTS})
endif()
endif()
add_executable(main quick.cpp)
target_link_libraries(main Boost::${component} ${PYTHON_LIBRARIES})
target_include_directories(main PRIVATE ${PYTHON_INCLUDE_DIRS})
enable_testing()
add_custom_target(check VERBATIM COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure --no-tests=error -C $<CONFIG>)
add_test(main main)
|