aboutsummaryrefslogtreecommitdiff
path: root/dep/boost
diff options
context:
space:
mode:
Diffstat (limited to 'dep/boost')
-rw-r--r--dep/boost/CMakeLists.txt19
1 files changed, 4 insertions, 15 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt
index 4e28ef48a30..6370aa9f329 100644
--- a/dep/boost/CMakeLists.txt
+++ b/dep/boost/CMakeLists.txt
@@ -34,11 +34,6 @@ endif()
include (CheckCXXSourceCompiles)
-check_cxx_source_compiles("
- #include <regex>
- int main() { std::wregex r(L\".*\"); }"
- STD_HAS_WORKING_WREGEX)
-
if (WIN32)
# On windows the requirements are higher according to the wiki.
set(BOOST_REQUIRED_VERSION 1.59)
@@ -46,11 +41,7 @@ else()
set(BOOST_REQUIRED_VERSION 1.55)
endif()
-if (STD_HAS_WORKING_WREGEX)
- find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem thread program_options iostreams)
-else()
- find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem thread program_options iostreams regex)
-endif()
+find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem thread program_options iostreams regex)
# Find if Boost was compiled in C++03 mode because it requires -DBOOST_NO_CXX11_SCOPED_ENUMS
@@ -91,8 +82,6 @@ if (NOT boost_filesystem_copy_links_without_NO_SCOPED_ENUM)
-DBOOST_NO_CXX11_SCOPED_ENUMS)
endif()
-if (NOT STD_HAS_WORKING_WREGEX)
- target_compile_definitions(boost
- INTERFACE
- -DTC_HAS_BROKEN_WSTRING_REGEX)
-endif()
+target_compile_definitions(boost
+ INTERFACE
+ -DTC_HAS_BROKEN_WSTRING_REGEX)