From b0f9c6cda16b9e1d003149a3135376f101517ed4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 26 Dec 2019 17:19:43 +0200 Subject: [PATCH] Add CMake install support (needed by Atomic) --- CMakeLists.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d0dc7d..f237dbc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,10 @@ # Copyright 2018 Mike Dev +# Copyright 2019 Peter Dimov # 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) -project(BoostTypeTraits) +cmake_minimum_required(VERSION 3.5...3.16) +project(BoostTypeTraits VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX) add_library(boost_type_traits INTERFACE) add_library(Boost::type_traits ALIAS boost_type_traits) @@ -16,3 +17,10 @@ target_link_libraries(boost_type_traits Boost::static_assert ) +include(BoostInstall OPTIONAL RESULT_VARIABLE HAVE_BOOST_INSTALL) + +if(HAVE_BOOST_INSTALL) + + boost_install(TARGETS boost_type_traits HEADER_DIRECTORY include/) + +endif()