1# Copyright 2019 Sam Day 2# Distributed under the Boost Software License, Version 1.0. 3# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt 4# 5# NOTE: CMake support for Boost.dynamic_bitset is currently experimental at best 6# and the interface is likely to change in the future 7 8cmake_minimum_required(VERSION 3.5) 9project(BoostDynamicBitset LANGUAGES CXX) 10 11add_library(boost_dynamic_bitset INTERFACE) 12add_library(Boost::dynamic_bitset ALIAS boost_dynamic_bitset) 13 14target_include_directories(boost_dynamic_bitset INTERFACE include) 15 16target_link_libraries(boost_dynamic_bitset 17 INTERFACE 18 Boost::assert 19 Boost::config 20 Boost::core 21 Boost::integer 22 Boost::move 23 Boost::static_assert 24 Boost::throw_exception 25 ) 26