CMakeLists.txt 596 B

123456789101112131415161718192021
  1. # Copyright 2018, 2019 Peter Dimov
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # http://www.boost.org/LICENSE_1_0.txt
  4. # Partial (add_subdirectory only) and experimental CMake support
  5. # Subject to change; please do not rely on the contents of this file yet
  6. cmake_minimum_required(VERSION 3.5)
  7. project(BoostVariant2 LANGUAGES CXX)
  8. add_library(boost_variant2 INTERFACE)
  9. add_library(Boost::variant2 ALIAS boost_variant2)
  10. target_include_directories(boost_variant2 INTERFACE include)
  11. target_link_libraries(boost_variant2
  12. INTERFACE
  13. Boost::config
  14. Boost::mp11
  15. )