mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 05:01:37 +08:00
46 lines
1.3 KiB
Diff
46 lines
1.3 KiB
Diff
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index ccd422301..0959c5ab1 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -8,17 +8,25 @@ cmake_minimum_required(VERSION 3.5...3.16)
|
||
|
|
||
|
project(boost_regex VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
||
|
|
||
|
-add_library(boost_regex INTERFACE)
|
||
|
+set(regex_compat_sources
|
||
|
+ "src/posix_api.cpp"
|
||
|
+ "src/wide_posix_api.cpp"
|
||
|
+ "src/regex.cpp"
|
||
|
+ "src/regex_debug.cpp"
|
||
|
+ "src/static_mutex.cpp"
|
||
|
+)
|
||
|
+
|
||
|
+add_library(boost_regex "${regex_compat_sources}")
|
||
|
add_library(Boost::regex ALIAS boost_regex)
|
||
|
|
||
|
-target_include_directories(boost_regex INTERFACE include)
|
||
|
+target_include_directories(boost_regex PUBLIC include)
|
||
|
|
||
|
option(BOOST_REGEX_STANDALONE "Boost.Regex: Enable Standalone Mode (i.e. no Boost dependencies)")
|
||
|
|
||
|
if(NOT BOOST_REGEX_STANDALONE)
|
||
|
|
||
|
target_link_libraries(boost_regex
|
||
|
- INTERFACE
|
||
|
+ PUBLIC
|
||
|
Boost::config
|
||
|
Boost::throw_exception
|
||
|
Boost::predef
|
||
|
@@ -34,9 +42,9 @@ else()
|
||
|
endif()
|
||
|
|
||
|
find_package(ICU COMPONENTS data i18n uc QUIET)
|
||
|
-#option(BOOST_REGEX_ENABLE_ICU "Boost.Regex: enable ICU support" ${ICU_FOUND})
|
||
|
+option(BOOST_REGEX_ENABLE_ICU "Boost.Regex: enable ICU support" ${ICU_FOUND})
|
||
|
|
||
|
-if(ICU_FOUND)
|
||
|
+if(BOOST_REGEX_ENABLE_ICU)
|
||
|
|
||
|
add_library(boost_regex_icu INTERFACE)
|
||
|
add_library(Boost::regex_icu ALIAS boost_regex_icu)
|