
Each router module now resides in a subdirectory of its own. The name of the subdirectory is the same as the name of the library in the module's CMakeLists.txt file.
6 lines
189 B
CMake
6 lines
189 B
CMake
add_library(debugcli SHARED debugcli.c debugcmd.c)
|
|
target_link_libraries(debugcli maxscale-common)
|
|
set_target_properties(debugcli PROPERTIES VERSION "1.1.1")
|
|
install_module(debugcli core)
|
|
|