diff --git a/backends/libcommuni/CMakeLists.txt b/backends/libcommuni/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2a14730af635bd96f7b6d4ad42cb5adf02e8f03 --- /dev/null +++ b/backends/libcommuni/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 2.6) +FILE(GLOB SRC *.cpp) +FILE(GLOB HEADERS *.h) +QT4_WRAP_CPP(SRC ${HEADERS}) +ADD_EXECUTABLE(spectrum2_libcommuni_backend ${SRC}) + +target_link_libraries(spectrum2_libcommuni_backend ${IRC_LIBRARY} ${QT_LIBRARIES} transport-plugin transport pthread) + +INSTALL(TARGETS spectrum2_libcommuni_backend RUNTIME DESTINATION bin) +