Changed the default values to the same as in makefiles Added configured versions of maxscale.conf and maxscale init.d script
6 lines
181 B
CMake
6 lines
181 B
CMake
add_library(log_manager SHARED log_manager.cc)
|
|
target_link_libraries(log_manager utils)
|
|
install(TARGETS log_manager DESTINATION lib)
|
|
if(BUILD_TESTS)
|
|
add_subdirectory(test)
|
|
endif() |