vcpkg/ports/boost-regex/b2-options.cmake
autoantwort 80d7989f73
[boost-regex] fix build with icu on osx (#16994)
* [boost-regex] fix osx build with icu

* add version files

* Update ports/boost-regex/b2-options.cmake: Apply suggestion

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* add version files

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-04-08 12:04:56 -07:00

7 lines
247 B
CMake

if("icu" IN_LIST FEATURES)
set(B2_REQUIREMENTS "<library>/user-config//icuuc <library>/user-config//icudt <library>/user-config//icuin <define>BOOST_HAS_ICU=1")
if(APPLE)
list(APPEND B2_OPTIONS cxxstd=11)
endif()
endif()