CMakeLists.txt 421 B

123456789101112
  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. cmake_minimum_required(VERSION 3.5)
  5. project(BoostPreprocessor LANGUAGES CXX)
  6. add_library(boost_preprocessor INTERFACE)
  7. add_library(Boost::preprocessor ALIAS boost_preprocessor)
  8. target_include_directories(boost_preprocessor INTERFACE include)