CMakeLists.txt 509 B

123456789101112131415161718
  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. cmake_minimum_required(VERSION 3.5)
  5. project(BoostTypeTraits)
  6. add_library(boost_type_traits INTERFACE)
  7. add_library(Boost::type_traits ALIAS boost_type_traits)
  8. target_include_directories(boost_type_traits INTERFACE include)
  9. target_link_libraries(boost_type_traits
  10. INTERFACE
  11. Boost::config
  12. Boost::static_assert
  13. )