Commit cc5d52bb by Maarten L. Hekkelman

boost::regex usage

parent a9e9f86c
......@@ -273,10 +273,15 @@ target_include_directories(cifpp
)
target_link_libraries(cifpp PUBLIC Threads::Threads gxrio::gxrio ${CIFPP_REQUIRED_LIBRARIES})
if(BOOST_REGEX_STANDALONE)
target_link_libraries(cifpp PRIVATE Boost::regex)
target_include_directories(cifpp PRIVATE regex/include)
endif()
# if(BOOST_REGEX_STANDALONE)
# target_link_libraries(cifpp PRIVATE Boost::regex)
# endif()
# target_link_libraries(cifpp PRIVATE)
if(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
target_link_options(cifpp PRIVATE -undefined dynamic_lookup)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment