Skip to content

Commit

Permalink
Disable installation without the superproject; add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Dec 27, 2019
1 parent b0f9c6c commit 4e69755
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,28 @@
# 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

# We support CMake 3.5, but prefer 3.16 policies and behavior
cmake_minimum_required(VERSION 3.5...3.16)
project(BoostTypeTraits VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)

project(boost_type_traits VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)

add_library(boost_type_traits INTERFACE)
add_library(Boost::type_traits ALIAS boost_type_traits)

target_include_directories(boost_type_traits INTERFACE include)

target_link_libraries(boost_type_traits
INTERFACE
Boost::config
Boost::static_assert
INTERFACE
Boost::config
Boost::static_assert
)

include(BoostInstall OPTIONAL RESULT_VARIABLE HAVE_BOOST_INSTALL)
# boost_install requires PROJECT_VERSION
# Without the superproject, we don't have any, so skip installation

if(HAVE_BOOST_INSTALL)
if(BOOST_SUPERPROJECT_VERSION)

boost_install(TARGETS boost_type_traits HEADER_DIRECTORY include/)
include(BoostInstall)
boost_install(TARGETS boost_type_traits HEADER_DIRECTORY include/)

endif()

0 comments on commit 4e69755

Please sign in to comment.