diff --git a/CMakeLists.txt b/CMakeLists.txt index 05d6d57e..f105b7a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -265,5 +265,6 @@ SET(CMAKE_SHARED_LIBRARY_PREFIX "") ADD_SUBDIRECTORY (core) ADD_SUBDIRECTORY (apps) +ADD_SUBDIRECTORY (tools) #SET_DIRECTORY_PROPERTIES(ADDITIONAL_MAKE_CLEAN_FILES *~) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt new file mode 100644 index 00000000..db5d8bd5 --- /dev/null +++ b/tools/CMakeLists.txt @@ -0,0 +1,14 @@ +# executable + +set (sems-logfile-callextract_SRCS +logfile-splitter.cpp +) + +ADD_EXECUTABLE (sems-logfile-callextract ${sems-logfile-callextract_SRCS}) +#TARGET_LINK_LIBRARIES(sems-stats ${CMAKE_DL_LIBS} stdc++) + +INSTALL(TARGETS sems-logfile-callextract + RUNTIME DESTINATION ${SEMS_EXEC_PREFIX}/sbin + ) + +INCLUDE(${CMAKE_SOURCE_DIR}/cmake/config.rules.txt)