mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
515 B
25 lines
515 B
# executable
|
|
|
|
set (sems_stats_SRCS
|
|
query_stats.cxx
|
|
)
|
|
|
|
ADD_EXECUTABLE (sems-stats ${sems_stats_SRCS})
|
|
TARGET_LINK_LIBRARIES(sems-stats ${CMAKE_DL_LIBS} stdc++)
|
|
|
|
INSTALL(TARGETS sems-stats
|
|
RUNTIME DESTINATION ${SEMS_EXEC_PREFIX}/sbin
|
|
)
|
|
|
|
# library
|
|
set (stats_SRCS
|
|
Statistics.cpp
|
|
StatsUDPServer.cpp
|
|
)
|
|
|
|
SET(sems_module_name stats)
|
|
SET(stats_doc_files README.stats)
|
|
INCLUDE(${CMAKE_SOURCE_DIR}/cmake/module.rules.txt)
|
|
INCLUDE(${CMAKE_SOURCE_DIR}/cmake/config.rules.txt)
|
|
INCLUDE(${CMAKE_SOURCE_DIR}/cmake/doc.rules.txt)
|