From 4ae42efdae186b902fdd715adb0ef8956f27ceac Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 20 Sep 2018 00:04:10 +0300 Subject: [PATCH] Add minimal CMakeLists.txt --- CMakeLists.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..2041432 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,21 @@ +# Copyright 2018 Peter Dimov +# +# Distributed under the Boost Software License, Version 1.0. +# +# See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt + +cmake_minimum_required(VERSION 3.5) + +project(BoostCore LANGUAGES CXX) + +add_library(boost_core INTERFACE) +add_library(Boost::core ALIAS boost_core) + +target_include_directories(boost_core INTERFACE include) + +target_link_libraries(boost_core + INTERFACE + Boost::assert + Boost::config +)