Files
MaxScale/server/modules/protocol/HTTPD/CMakeLists.txt
Markus Mäkelä 11a756a028 Detect undefined references at link time
Instruct the linker to make sure all symbols are resolved at link time.
2018-11-06 21:34:28 +02:00

5 lines
186 B
CMake

add_library(httpd SHARED httpd.cc)
target_link_libraries(httpd maxscale-common)
set_target_properties(httpd PROPERTIES VERSION "1.0.1" LINK_FLAGS -Wl,-z,defs)
install_module(httpd core)