• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2018 Glen Joseph Fernandes
2# (glenjofe@gmail.com)
3#
4# Distributed under the Boost Software License, Version 1.0.
5# (http://www.boost.org/LICENSE_1_0.txt)
6
7cmake_minimum_required(VERSION 3.5)
8
9project(BoostCircularBuffer LANGUAGES CXX)
10
11add_library(boost_circular_buffer INTERFACE)
12
13add_library(Boost::circular_buffer ALIAS boost_circular_buffer)
14
15target_include_directories(boost_circular_buffer INTERFACE include)
16
17target_link_libraries(boost_circular_buffer INTERFACE
18    Boost::assert
19    Boost::concept_check
20    Boost::config
21    Boost::core
22    Boost::move
23    Boost::static_assert
24    Boost::throw_exception
25    Boost::type_traits)
26