• 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(BoostConceptCheck LANGUAGES CXX)
10
11add_library(boost_concept_check INTERFACE)
12
13add_library(Boost::concept_check ALIAS boost_concept_check)
14
15target_include_directories(boost_concept_check INTERFACE include)
16
17target_link_libraries(boost_concept_check INTERFACE
18    Boost::config
19    Boost::preprocessor
20    Boost::static_assert
21    Boost::type_traits)
22