mirror of
https://gitee.com/TarsCloud/TarsCpp.git
synced 2024-12-22 22:16:38 +08:00
18 lines
418 B
CMake
Executable File
18 lines
418 B
CMake
Executable File
# if(TARS_OPENTRACKING)
|
|
# include_directories(${PROJECT_SOURCE_DIR} ${OPENTRACKING_INC})
|
|
# else()
|
|
include_directories(${PROJECT_SOURCE_DIR})
|
|
# endif()
|
|
|
|
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
|
|
|
|
aux_source_directory(. DIR_SRCS)
|
|
|
|
add_library(tarsservant ${DIR_SRCS})
|
|
|
|
add_dependencies(tarsservant COPY-SERVENT-TARS)
|
|
|
|
install(TARGETS tarsservant
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib)
|