mirror of
https://github.com/boostorg/ratio.git
synced 2025-05-09 15:14:01 +00:00
Regenerate CMakeLists.txt
This commit is contained in:
parent
818c7febe3
commit
8d00f3194f
@ -1,37 +1,31 @@
|
|||||||
# Copyright 2019 Mike Dev
|
# Generated by `boostdep --cmake ratio`
|
||||||
|
# Copyright 2020 Peter Dimov
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
# 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
|
||||||
#
|
|
||||||
# NOTE: CMake support for Boost.Ratio is currently experimental at best
|
|
||||||
# and the interface is likely to change in the future
|
|
||||||
|
|
||||||
cmake_minimum_required( VERSION 3.5 )
|
cmake_minimum_required(VERSION 3.5...3.16)
|
||||||
project( BoostRatio LANGUAGES CXX)
|
|
||||||
option( BOOST_RATIO_INCLUDE_TESTS "Add boost ratio tests" OFF )
|
|
||||||
|
|
||||||
add_library( boost_ratio INTERFACE )
|
project(boost_ratio VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
||||||
add_library( Boost::ratio ALIAS boost_ratio )
|
|
||||||
|
|
||||||
target_include_directories( boost_ratio INTERFACE include )
|
add_library(boost_ratio INTERFACE)
|
||||||
|
add_library(Boost::ratio ALIAS boost_ratio)
|
||||||
|
|
||||||
target_link_libraries( boost_ratio
|
target_include_directories(boost_ratio INTERFACE include)
|
||||||
INTERFACE
|
|
||||||
Boost::config
|
|
||||||
Boost::core
|
|
||||||
Boost::integer
|
|
||||||
Boost::mpl
|
|
||||||
Boost::static_assert
|
|
||||||
Boost::type_traits
|
|
||||||
|
|
||||||
# NOTE: As of Boost 1.70, the dependency on rational is only
|
target_link_libraries(boost_ratio
|
||||||
# necessary, if BOOST_RATIO_EXTENSIONS is defined.
|
INTERFACE
|
||||||
# Maybe consuming libraries that do so should add
|
Boost::config
|
||||||
# Boost::rational as a dependency themselves,
|
Boost::core
|
||||||
# instead of doing it here for everyone?
|
Boost::integer
|
||||||
Boost::rational
|
Boost::mpl
|
||||||
|
Boost::rational
|
||||||
|
Boost::static_assert
|
||||||
|
Boost::type_traits
|
||||||
)
|
)
|
||||||
|
|
||||||
if( BOOST_RATIO_INCLUDE_TESTS )
|
if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
|
||||||
enable_testing()
|
|
||||||
add_subdirectory( test )
|
add_subdirectory(test)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user