23 lines
463 B
CMake
23 lines
463 B
CMake
# ====================== ttrts =======================
|
|
# Project name
|
|
project( ttrts-server )
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
../system
|
|
../ttrts
|
|
)
|
|
|
|
# Add the sources
|
|
set( SOURCES
|
|
server.cpp
|
|
)
|
|
|
|
# Add the executable
|
|
add_executable( ${PROJECT_NAME} ${SOURCES} )
|
|
|
|
# dependent on main ttrts libary
|
|
target_link_libraries( ${PROJECT_NAME} ttrts ttrts-system pthread )
|
|
|
|
# Installation target
|
|
install( TARGETS ${PROJECT_NAME} DESTINATION bin )
|