Regenerate CMakeLists.txt with boostdep --cmake optional

This commit is contained in:
Peter Dimov
2024-01-15 20:11:44 +02:00
parent e962a134f0
commit 5f12573608

View File

@ -1,21 +1,22 @@
# Copyright 2019 Mike Dev
# Generated by `boostdep --cmake optional`
# Copyright 2020, 2021 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
# https://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required( VERSION 3.5...3.20 )
project( boost_optional VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX )
cmake_minimum_required(VERSION 3.5...3.20)
add_library( boost_optional INTERFACE )
add_library( Boost::optional ALIAS boost_optional )
project(boost_optional VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
target_include_directories( boost_optional INTERFACE include )
add_library(boost_optional INTERFACE)
add_library(Boost::optional ALIAS boost_optional)
target_link_libraries( boost_optional
target_include_directories(boost_optional INTERFACE include)
target_link_libraries(boost_optional
INTERFACE
Boost::assert
Boost::config
Boost::core
Boost::detail
Boost::move
Boost::predef
Boost::static_assert
@ -23,3 +24,9 @@ target_link_libraries( boost_optional
Boost::type_traits
Boost::utility
)
if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
add_subdirectory(test)
endif()