Files
concept_check/test/cmake_test/CMakeLists.txt
James E. King III 09eaa11985 Update CI
2024-11-29 17:37:31 +00:00

23 lines
733 B
CMake

# Copyright 2021-2024 Alexander Grund
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required(VERSION 3.5...3.16)
project(cmake_subdir_test LANGUAGES CXX)
# Those 2 should work the same
# while using find_package for the installed Boost avoids the need to manually specify dependencies
if(BOOST_CI_INSTALL_TEST)
find_package(boost_concept_check REQUIRED)
else()
set(BOOST_INCLUDE_LIBRARIES concept_check)
add_subdirectory(../../../.. deps/boost EXCLUDE_FROM_ALL)
endif()
add_executable(main main.cpp)
target_link_libraries(main Boost::concept_check)
enable_testing()
add_test(NAME main COMMAND main)