Files
boost_assert/CMakeLists.txt

27 lines
701 B
CMake
Raw Permalink Normal View History

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
# 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)
add_library(boost_assert INTERFACE)
add_library(Boost::assert ALIAS boost_assert)
target_include_directories(boost_assert INTERFACE include)
target_link_libraries(boost_assert
INTERFACE
Boost::config
)
2018-09-20 00:55:16 +03:00
# BUILD_TESTING is the standard CTest variable that enables testing
2019-12-15 20:10:02 +02:00
if(BUILD_TESTING)
add_subdirectory(test)
2018-09-20 00:55:16 +03:00
endif()