51f22a3a04
Pick-to: 6.3 Change-Id: Ia5d474a3efd6aadbd0ef1537318f2f24e6c24fee Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
40 lines
967 B
CMake
40 lines
967 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(threadedfortuneserver LANGUAGES CXX)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
endif()
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/network/threadedfortuneserver")
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core Gui Network Widgets)
|
|
|
|
qt_add_executable(threadedfortuneserver
|
|
dialog.cpp dialog.h
|
|
fortuneserver.cpp fortuneserver.h
|
|
fortunethread.cpp fortunethread.h
|
|
main.cpp
|
|
)
|
|
set_target_properties(threadedfortuneserver PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
MACOSX_BUNDLE TRUE
|
|
)
|
|
target_link_libraries(threadedfortuneserver PUBLIC
|
|
Qt::Core
|
|
Qt::Gui
|
|
Qt::Network
|
|
Qt::Widgets
|
|
)
|
|
|
|
install(TARGETS threadedfortuneserver
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|