Files
imhex/lib/third_party/boost/regex/CMakeLists.txt
2024-06-07 23:12:18 +02:00

10 lines
238 B
CMake

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)