CMakeLists.txt 470 B

12345678910111213141516
  1. # Distributed under the Boost Software License, Version 1.0.
  2. # See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
  3. cmake_minimum_required(VERSION 3.5)
  4. project(BoostOutcome LANGUAGES CXX)
  5. add_library(boost_outcome INTERFACE)
  6. add_library(Boost::outcome ALIAS boost_outcome)
  7. target_include_directories(boost_outcome INTERFACE include)
  8. target_link_libraries(boost_outcome INTERFACE
  9. Boost::config
  10. Boost::exception
  11. Boost::system
  12. )