Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « smstools3 « backends - github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea041462cce53b6c4b3e52a8e5a2a84cb1856ac2 (plain)
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 2.6)

file(GLOB SRC *.c *.cpp)

add_executable(spectrum2_smstools3_backend ${SRC})

target_link_libraries(spectrum2_smstools3_backend transport pthread ${Boost_LIBRARIES} ${SWIFTEN_LIBRARY} ${LOG4CXX_LIBRARIES})

install(TARGETS spectrum2_smstools3_backend RUNTIME DESTINATION bin)