1
0
mirror of synced 2025-02-09 15:28:24 +01:00

10 lines
238 B
CMake
Raw Normal View History

project(boost-regex)
add_library(boost-regex INTERFACE)
target_include_directories(boost-regex INTERFACE
include
)
target_compile_definitions(boost-regex INTERFACE BOOST_REGEX_STANDALONE)
add_library(boost::regex ALIAS boost-regex)