Files
smart_ptr/CMakeLists.txt

30 lines
769 B
CMake
Raw Normal View History

2024-09-24 17:41:55 +03:00
# Generated by `boostdep --cmake smart_ptr`
# Copyright 2020, 2021 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
2024-09-24 17:41:55 +03:00
# https://www.boost.org/LICENSE_1_0.txt
2019-01-04 19:40:30 +02:00
2024-09-24 17:41:55 +03:00
cmake_minimum_required(VERSION 3.8...3.20)
2020-01-08 05:08:37 +02:00
project(boost_smart_ptr VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
add_library(boost_smart_ptr INTERFACE)
add_library(Boost::smart_ptr ALIAS boost_smart_ptr)
target_include_directories(boost_smart_ptr INTERFACE include)
target_link_libraries(boost_smart_ptr
2020-01-08 05:08:37 +02:00
INTERFACE
Boost::assert
Boost::config
Boost::core
Boost::throw_exception
)
2020-01-08 05:08:37 +02:00
2024-09-24 17:41:55 +03:00
target_compile_features(boost_smart_ptr INTERFACE cxx_std_11)
if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
2020-01-08 05:08:37 +02:00
add_subdirectory(test)
endif()