2
0
mirror of https://github.com/boostorg/icl.git synced 2026-01-19 16:22:18 +00:00

Add CMakeLists.txt

This commit is contained in:
Peter Dimov
2021-05-28 01:13:49 +03:00
parent 3e8a7d8fd6
commit e6c06ddee1

39
CMakeLists.txt Normal file
View File

@@ -0,0 +1,39 @@
# Generated by `boostdep --cmake icl`
# Copyright 2020 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required(VERSION 3.5...3.16)
project(boost_icl VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
add_library(boost_icl INTERFACE)
add_library(Boost::icl ALIAS boost_icl)
target_include_directories(boost_icl INTERFACE include)
target_link_libraries(boost_icl
INTERFACE
Boost::assert
Boost::concept_check
Boost::config
Boost::container
Boost::core
Boost::date_time
Boost::detail
Boost::iterator
Boost::move
Boost::mpl
Boost::range
Boost::rational
Boost::static_assert
Boost::type_traits
Boost::utility
)
if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
add_subdirectory(test)
endif()