CMakeLists.txt 663 B

123456789101112131415161718192021
  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. #
  5. # CAUTION!!!!
  6. #
  7. # This addition to Boost.Config should be considered experimental and is part
  8. # of an ongoing effort to add CMake support Boost-wide.
  9. #
  10. # IT IS HIGHLY LIKELY THAT THIS FILE WILL CHANGE WITHOUT NOTICE!!!
  11. #
  12. # DO NOT REPLY ON THE CONTENTS OF THIS FILE!!!
  13. #
  14. cmake_minimum_required(VERSION 3.5)
  15. project(BoostConfig LANGUAGES CXX)
  16. add_library(boost_config INTERFACE)
  17. add_library(Boost::config ALIAS boost_config)
  18. target_include_directories(boost_config INTERFACE include)