From f769217ca8011c8cd19c2707b67a875473810c38 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 4 Jan 2019 19:40:30 +0200 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b923e08..e3acea0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,12 @@ # Copyright 2018 Mike Dev # 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 -# -# NOTE: CMake support for Boost.Smart_ptr is currently experimental at best -# and the interface is likely to change in the future + +# Partial (add_subdirectory only) and experimental CMake support +# Subject to change; please do not rely on the contents of this file yet cmake_minimum_required(VERSION 3.5) -project(BoostSmart_ptr) +project(BoostSmartPtr LANGUAGES CXX) add_library(boost_smart_ptr INTERFACE) add_library(Boost::smart_ptr ALIAS boost_smart_ptr) @@ -24,4 +24,3 @@ target_link_libraries(boost_smart_ptr Boost::throw_exception Boost::type_traits ) -