CMakeLists.txt 651 B

12345678910111213141516171819202122232425
  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. cmake_minimum_required(VERSION 3.5)
  7. project(BoostCircularBuffer LANGUAGES CXX)
  8. add_library(boost_circular_buffer INTERFACE)
  9. add_library(Boost::circular_buffer ALIAS boost_circular_buffer)
  10. target_include_directories(boost_circular_buffer INTERFACE include)
  11. target_link_libraries(boost_circular_buffer INTERFACE
  12. Boost::assert
  13. Boost::concept_check
  14. Boost::config
  15. Boost::core
  16. Boost::move
  17. Boost::static_assert
  18. Boost::throw_exception
  19. Boost::type_traits)