• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2018 Mike Dev
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
5cmake_minimum_required(VERSION 3.5)
6project(BoostContainerHash LANGUAGES CXX)
7
8add_library(boost_container_hash INTERFACE)
9add_library(Boost::container_hash ALIAS boost_container_hash)
10
11target_include_directories(boost_container_hash INTERFACE include)
12
13target_link_libraries(boost_container_hash
14    INTERFACE
15        Boost::assert
16        Boost::config
17        Boost::core
18        Boost::detail
19        Boost::integer
20        Boost::static_assert
21        Boost::type_traits
22)
23
24