CMakeLists.txt 623 B

1234567891011121314151617181920
  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. # NOTE: CMake support for Boost.Logic 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( BoostLogic LANGUAGES CXX )
  9. add_library( boost_logic INTERFACE )
  10. add_library( Boost::logic ALIAS boost_logic )
  11. target_include_directories( boost_logic INTERFACE include )
  12. target_link_libraries( boost_logic
  13. INTERFACE
  14. Boost::config
  15. Boost::core
  16. )