Files
MaxScale/maxutils/maxbase/src/CMakeLists.txt
2019-04-24 12:38:04 +03:00

30 lines
516 B
CMake

add_library(maxbase STATIC
alloc.cc
atomic.cc
eventcount.cc
format.cc
http.cc
log.cc
logger.cc
maxbase.cc
messagequeue.cc
pam_utils.cc
semaphore.cc
stopwatch.cc
string.cc
stacktrace.cc
worker.cc
workertask.cc
average.cc
random.cc
host.cc
)
if(HAVE_SYSTEMD)
target_link_libraries(maxbase systemd)
endif()
set_target_properties(maxbase PROPERTIES VERSION "1.0.0" LINK_FLAGS -Wl,-z,defs)
target_link_libraries(maxbase ${CURL_LIBRARIES} ${PAM_LIBRARIES})
add_subdirectory(test)