
Changed the default values to the same as in makefiles Added configured versions of maxscale.conf and maxscale init.d script
7 lines
189 B
CMake
7 lines
189 B
CMake
add_executable(maxadmin maxadmin.c)
|
|
find_library(HIST edit)
|
|
if(HIST)
|
|
add_definitions(-DHISTORY)
|
|
target_link_libraries(maxadmin ${HIST})
|
|
endif()
|
|
install(TARGETS maxadmin DESTINATION bin) |