CMakeLists.txt 755 B

12345678910111213141516171819202122232425
  1. # Copyright 2019 Mike Dev
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
  4. #
  5. # NOTE: CMake support for Boost.Intrusive is currently experimental at best
  6. # and the interface is likely to change in the future
  7. cmake_minimum_required( VERSION 3.5 )
  8. project( Boost.Intrusive LANGUAGES CXX )
  9. add_library (boost_intrusive INTERFACE )
  10. add_library( Boost::intrusive ALIAS boost_intrusive )
  11. target_include_directories( boost_intrusive INTERFACE include )
  12. target_link_libraries( boost_intrusive
  13. INTERFACE
  14. Boost::assert
  15. Boost::config
  16. Boost::container_hash
  17. Boost::core
  18. Boost::move
  19. Boost::static_assert
  20. )