From 902dfced06b73b92ae6cb9adc7a51acff0bcc936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCri=20Valdmann?= Date: Tue, 17 Sep 2019 11:43:34 +0200 Subject: Add cmake support Fixes: QTBUG-78190 Change-Id: Ibdfbcb479ce1af6370b9148516cef6f64e7c1abb Reviewed-by: Qt CMake Build Bot Reviewed-by: Alexandru Croitor --- examples/webchannel/chatserver-cpp/CMakeLists.txt | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 examples/webchannel/chatserver-cpp/CMakeLists.txt (limited to 'examples/webchannel/chatserver-cpp/CMakeLists.txt') diff --git a/examples/webchannel/chatserver-cpp/CMakeLists.txt b/examples/webchannel/chatserver-cpp/CMakeLists.txt new file mode 100644 index 0000000..afca841 --- /dev/null +++ b/examples/webchannel/chatserver-cpp/CMakeLists.txt @@ -0,0 +1,34 @@ +# Generated from chatserver-cpp.pro. + +cmake_minimum_required(VERSION 3.14) +project(chatserver LANGUAGES CXX) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) +set(CMAKE_AUTOUIC ON) + +set(INSTALL_EXAMPLEDIR "examples") + +find_package(Qt6 COMPONENTS Core) +find_package(Qt6 COMPONENTS WebSockets) +find_package(Qt6 COMPONENTS WebChannel) + +add_executable(chatserver + ../shared/websocketclientwrapper.cpp ../shared/websocketclientwrapper.h + ../shared/websockettransport.cpp ../shared/websockettransport.h + chatserver.cpp chatserver.h + main.cpp +) +target_link_libraries(chatserver PUBLIC + Qt::Core + Qt::WebChannel + Qt::WebSockets +) + +install(TARGETS chatserver + RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}" + BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}" + LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}" +) -- cgit v1.2.3