Fixed PCRE2 beng built when CMake is configured
The bundled PCRE2 library will be built as a separate target and configuring CMake no longer builds it. Instead, it will only be built when it is out of date. This requires all targets to declare that they depend on the pcre2 target in order for it to be built.
This commit is contained in:
@ -1,2 +1,3 @@
|
||||
add_library(utils skygw_utils.cc ../server/core/atomic.c)
|
||||
target_link_libraries(utils stdc++ ${PCRE2_LIBRARIES})
|
||||
add_dependencies(utils pcre2)
|
||||
|
Reference in New Issue
Block a user