2019-12-15 20:10:02 +02:00
|
|
|
# Copyright 2018, 2019 Peter Dimov
|
2018-09-20 00:55:16 +03:00
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
2018-09-20 01:53:36 +03:00
|
|
|
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
|
2018-09-20 00:55:16 +03:00
|
|
|
|
2019-12-27 04:00:29 +02:00
|
|
|
# We support CMake 3.5, but prefer 3.16 policies and behavior
|
2019-12-15 20:10:02 +02:00
|
|
|
cmake_minimum_required(VERSION 3.5...3.16)
|
2018-09-20 00:55:16 +03:00
|
|
|
|
2019-12-15 20:10:02 +02:00
|
|
|
project(boost_assert VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
2018-09-17 11:38:41 +02:00
|
|
|
|
|
|
|
|
add_library(boost_assert INTERFACE)
|
|
|
|
|
add_library(Boost::assert ALIAS boost_assert)
|
|
|
|
|
|
2019-12-26 17:07:17 +02:00
|
|
|
target_include_directories(boost_assert INTERFACE include)
|
2018-09-17 11:38:41 +02:00
|
|
|
|
|
|
|
|
target_link_libraries(boost_assert
|
2019-12-27 04:00:29 +02:00
|
|
|
INTERFACE
|
|
|
|
|
Boost::config
|
2018-09-17 11:38:41 +02:00
|
|
|
)
|
2018-09-20 00:55:16 +03:00
|
|
|
|
2019-12-27 04:00:29 +02:00
|
|
|
# BUILD_TESTING is the standard CTest variable that enables testing
|
|
|
|
|
|
2019-12-15 20:10:02 +02:00
|
|
|
if(BUILD_TESTING)
|
2018-09-20 01:30:54 +03:00
|
|
|
|
2019-12-27 04:00:29 +02:00
|
|
|
add_subdirectory(test)
|
2018-09-20 00:55:16 +03:00
|
|
|
|
|
|
|
|
endif()
|