CMakeLists.txt 972 B

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright 2018 Peter Dimov
  2. # Copyright 2018 Andrey Semashev
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
  5. # Partial (add_subdirectory only) and experimental CMake support
  6. # Subject to change; please do not rely on the contents of this file yet.
  7. cmake_minimum_required(VERSION 3.5)
  8. project(BoostIterator LANGUAGES CXX)
  9. add_library(boost_iterator INTERFACE)
  10. add_library(Boost::iterator ALIAS boost_iterator)
  11. target_include_directories(boost_iterator INTERFACE include)
  12. target_link_libraries(boost_iterator
  13. INTERFACE
  14. Boost::assert
  15. Boost::concept_check
  16. Boost::config
  17. Boost::conversion
  18. Boost::core
  19. Boost::detail
  20. Boost::function_types
  21. Boost::fusion
  22. Boost::mpl
  23. Boost::optional
  24. Boost::smart_ptr
  25. Boost::static_assert
  26. Boost::type_traits
  27. Boost::utility
  28. )