Merge remote-tracking branch 'origin/wip/qt6' into wip/cmake
This changes many different CMake places to mention Qt6 instead of Qt5. Note that some old qt5 cmake config files in corelib are probably not needed anymore, but I still renamed and kept them for now. Change-Id: Ie69e81540386a5af153f76c0242e18d48211bec4
This commit is contained in:
commit
fe3bd212fc
@ -4,4 +4,4 @@ CONFIG += warning_clean
|
|||||||
QT_SOURCE_TREE = $$PWD
|
QT_SOURCE_TREE = $$PWD
|
||||||
QT_BUILD_TREE = $$shadowed($$PWD)
|
QT_BUILD_TREE = $$shadowed($$PWD)
|
||||||
|
|
||||||
MODULE_VERSION = 5.14.0
|
MODULE_VERSION = 6.0.0
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.15.0)
|
cmake_minimum_required(VERSION 3.15.0)
|
||||||
|
|
||||||
project(QtBase
|
project(QtBase
|
||||||
VERSION 5.14.0
|
VERSION 6.0.0
|
||||||
DESCRIPTION "Qt Base Libraries"
|
DESCRIPTION "Qt Base Libraries"
|
||||||
HOMEPAGE_URL "https://qt.io/"
|
HOMEPAGE_URL "https://qt.io/"
|
||||||
LANGUAGES CXX C ASM
|
LANGUAGES CXX C ASM
|
||||||
|
@ -21,7 +21,7 @@ set(__GlobalConfig_path_suffix "${INSTALL_CMAKE_NAMESPACE}")
|
|||||||
qt_path_join(__GlobalConfig_build_dir ${QT_CONFIG_BUILD_DIR} ${__GlobalConfig_path_suffix})
|
qt_path_join(__GlobalConfig_build_dir ${QT_CONFIG_BUILD_DIR} ${__GlobalConfig_path_suffix})
|
||||||
qt_path_join(__GlobalConfig_install_dir ${QT_CONFIG_INSTALL_DIR} ${__GlobalConfig_path_suffix})
|
qt_path_join(__GlobalConfig_install_dir ${QT_CONFIG_INSTALL_DIR} ${__GlobalConfig_path_suffix})
|
||||||
|
|
||||||
# Generate and install Qt5 config file.
|
# Generate and install Qt6 config file.
|
||||||
configure_package_config_file(
|
configure_package_config_file(
|
||||||
"${PROJECT_SOURCE_DIR}/cmake/QtConfig.cmake.in"
|
"${PROJECT_SOURCE_DIR}/cmake/QtConfig.cmake.in"
|
||||||
"${__GlobalConfig_build_dir}/${INSTALL_CMAKE_NAMESPACE}Config.cmake"
|
"${__GlobalConfig_build_dir}/${INSTALL_CMAKE_NAMESPACE}Config.cmake"
|
||||||
@ -34,7 +34,7 @@ write_basic_package_version_file(
|
|||||||
COMPATIBILITY AnyNewerVersion
|
COMPATIBILITY AnyNewerVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
# Generate and install Qt5Tools config file.
|
# Generate and install Qt6Tools config file.
|
||||||
configure_package_config_file(
|
configure_package_config_file(
|
||||||
"${PROJECT_SOURCE_DIR}/cmake/QtToolsConfig.cmake.in"
|
"${PROJECT_SOURCE_DIR}/cmake/QtToolsConfig.cmake.in"
|
||||||
"${__GlobalConfig_build_dir}/${INSTALL_CMAKE_NAMESPACE}ToolsConfig.cmake"
|
"${__GlobalConfig_build_dir}/${INSTALL_CMAKE_NAMESPACE}ToolsConfig.cmake"
|
||||||
|
@ -675,7 +675,7 @@ endfunction()
|
|||||||
# When doing qt_internal_module_info(foo Core) this method will set
|
# When doing qt_internal_module_info(foo Core) this method will set
|
||||||
# the following variables in the caller's scope:
|
# the following variables in the caller's scope:
|
||||||
# * foo with the value "QtCore"
|
# * foo with the value "QtCore"
|
||||||
# * foo_versioned with the value "Qt5Core" (based on major Qt version)
|
# * foo_versioned with the value "Qt6Core" (based on major Qt version)
|
||||||
# * foo_upper with the value "CORE"
|
# * foo_upper with the value "CORE"
|
||||||
# * foo_lower with the value "core"
|
# * foo_lower with the value "core"
|
||||||
# * foo_include_dir with the module's include directory in the binary tree
|
# * foo_include_dir with the module's include directory in the binary tree
|
||||||
@ -775,7 +775,7 @@ function(qt_register_target_dependencies target public_libs private_libs)
|
|||||||
OR lib STREQUAL PlatformModuleInternal
|
OR lib STREQUAL PlatformModuleInternal
|
||||||
OR lib STREQUAL PlatformPluginInternal
|
OR lib STREQUAL PlatformPluginInternal
|
||||||
OR lib STREQUAL PlatformToolInternal)
|
OR lib STREQUAL PlatformToolInternal)
|
||||||
list(APPEND target_deps "Qt5\;${PROJECT_VERSION}")
|
list(APPEND target_deps "Qt6\;${PROJECT_VERSION}")
|
||||||
elseif ("${lib}" MATCHES "(.*)Private")
|
elseif ("${lib}" MATCHES "(.*)Private")
|
||||||
list(APPEND target_deps "${INSTALL_CMAKE_NAMESPACE}${CMAKE_MATCH_1}\;${PROJECT_VERSION}")
|
list(APPEND target_deps "${INSTALL_CMAKE_NAMESPACE}${CMAKE_MATCH_1}\;${PROJECT_VERSION}")
|
||||||
else()
|
else()
|
||||||
@ -1250,8 +1250,8 @@ function(add_qt_module target)
|
|||||||
|
|
||||||
if(target STREQUAL Core)
|
if(target STREQUAL Core)
|
||||||
# Propagate non-build related variables that are needed for consuming Qt packages.
|
# Propagate non-build related variables that are needed for consuming Qt packages.
|
||||||
# Do this in CoreConfig instead of Qt5Config, so that consumers can also use
|
# Do this in CoreConfig instead of Qt6Config, so that consumers can also use
|
||||||
# find_package(Qt5Core) instead of find_package(Qt5 COMPONENTS Core)
|
# find_package(Qt6Core) instead of find_package(Qt6 COMPONENTS Core)
|
||||||
string(APPEND extra_cmake_code "
|
string(APPEND extra_cmake_code "
|
||||||
set(QT_CMAKE_EXPORT_NAMESPACE ${QT_CMAKE_EXPORT_NAMESPACE})")
|
set(QT_CMAKE_EXPORT_NAMESPACE ${QT_CMAKE_EXPORT_NAMESPACE})")
|
||||||
endif()
|
endif()
|
||||||
@ -1718,7 +1718,7 @@ function(add_qt_tool name)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(arg_TOOLS_TARGET AND NOT QT_WILL_BUILD_TOOLS)
|
if(arg_TOOLS_TARGET AND NOT QT_WILL_BUILD_TOOLS)
|
||||||
set(tools_package_name "Qt5${arg_TOOLS_TARGET}Tools")
|
set(tools_package_name "Qt6${arg_TOOLS_TARGET}Tools")
|
||||||
message(STATUS "Searching for tool '${full_name}' in package ${tools_package_name}.")
|
message(STATUS "Searching for tool '${full_name}' in package ${tools_package_name}.")
|
||||||
|
|
||||||
# Only search in path provided by QT_HOST_PATH. We need to do it with CMAKE_PREFIX_PATH
|
# Only search in path provided by QT_HOST_PATH. We need to do it with CMAKE_PREFIX_PATH
|
||||||
@ -1728,7 +1728,7 @@ function(add_qt_tool name)
|
|||||||
set(CMAKE_PREFIX_PATH "${QT_HOST_PATH}")
|
set(CMAKE_PREFIX_PATH "${QT_HOST_PATH}")
|
||||||
|
|
||||||
# Search both with sysroots prepended as well as in the host system. When cross compiling
|
# Search both with sysroots prepended as well as in the host system. When cross compiling
|
||||||
# the mode_package might be set to ONLY only, and the Qt5 tools packages are actually
|
# the mode_package might be set to ONLY only, and the Qt6 tools packages are actually
|
||||||
# in the host system.
|
# in the host system.
|
||||||
set(BACKUP_CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ${CMAKE_FIND_ROOT_PATH_MODE_PACKAGE})
|
set(BACKUP_CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ${CMAKE_FIND_ROOT_PATH_MODE_PACKAGE})
|
||||||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE "BOTH")
|
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE "BOTH")
|
||||||
@ -1944,7 +1944,7 @@ function(add_qt_simd_part target)
|
|||||||
endif()
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# From Qt5CoreMacros
|
# From Qt6CoreMacros
|
||||||
# Function used to create the names of output files preserving relative dirs
|
# Function used to create the names of output files preserving relative dirs
|
||||||
function(qt_make_output_file infile prefix suffix source_dir binary_dir result)
|
function(qt_make_output_file infile prefix suffix source_dir binary_dir result)
|
||||||
get_filename_component(outfilename "${infile}" NAME_WE)
|
get_filename_component(outfilename "${infile}" NAME_WE)
|
||||||
|
@ -73,7 +73,7 @@ macro(qt_build_repo)
|
|||||||
# Do this before adding src, because there might be test related conditions
|
# Do this before adding src, because there might be test related conditions
|
||||||
# in source.
|
# in source.
|
||||||
if (BUILD_TESTING)
|
if (BUILD_TESTING)
|
||||||
find_package(Qt5 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS Test)
|
find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS Test)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/src/CMakeLists.txt")
|
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/src/CMakeLists.txt")
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@PACKAGE_INIT@
|
@PACKAGE_INIT@
|
||||||
|
|
||||||
# Slightly amended version of ./src/corelib/Qt5Config.cmake.in
|
# Slightly amended version of ./src/corelib/Qt6Config.cmake.in
|
||||||
if (CMAKE_VERSION VERSION_LESS 3.1.0)
|
if (CMAKE_VERSION VERSION_LESS 3.1.0)
|
||||||
message(FATAL_ERROR "Qt requires at least CMake version 3.1.0")
|
message(FATAL_ERROR "Qt requires at least CMake version 3.1.0")
|
||||||
endif()
|
endif()
|
||||||
|
@ -46,7 +46,7 @@ foreach(_target_dep ${_tool_deps})
|
|||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
# note: target_deps example: "Qt5Core\;5.12.0;Qt5Gui\;5.12.0"
|
# note: target_deps example: "Qt6Core\;5.12.0;Qt6Gui\;5.12.0"
|
||||||
set(_target_deps "@target_deps@")
|
set(_target_deps "@target_deps@")
|
||||||
foreach(_target_dep ${_target_deps})
|
foreach(_target_dep ${_target_deps})
|
||||||
list(GET _target_dep 0 pkg)
|
list(GET _target_dep 0 pkg)
|
||||||
|
@ -162,12 +162,12 @@ function(qt_android_generate_deployment_settings target)
|
|||||||
|
|
||||||
# Host Qt Android install path
|
# Host Qt Android install path
|
||||||
if (NOT QT_BUILDING_QT)
|
if (NOT QT_BUILDING_QT)
|
||||||
set(file_check "${Qt5_DIR}/plugins/platforms/android/libqtforandroid.so")
|
set(file_check "${Qt6_DIR}/plugins/platforms/android/libqtforandroid.so")
|
||||||
if (NOT EXISTS ${file_check})
|
if (NOT EXISTS ${file_check})
|
||||||
message(SEND_ERROR "Detected Qt installation does not contain libqtforandroid.so. This is most likely due to the installation not being a build of Qt for Android. Please update your settings.")
|
message(SEND_ERROR "Detected Qt installation does not contain libqtforandroid.so. This is most likely due to the installation not being a build of Qt for Android. Please update your settings.")
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
set(qt_android_install_dir ${Qt5_Dir})
|
set(qt_android_install_dir ${Qt6_Dir})
|
||||||
else()
|
else()
|
||||||
# Building from source, use the same install prefix
|
# Building from source, use the same install prefix
|
||||||
set(qt_android_install_dir ${CMAKE_INSTALL_PREFIX})
|
set(qt_android_install_dir ${CMAKE_INSTALL_PREFIX})
|
||||||
|
@ -34,7 +34,7 @@ endforeach()
|
|||||||
# Restore old module path.
|
# Restore old module path.
|
||||||
set(CMAKE_MODULE_PATH "${old_CMAKE_MODULE_PATH}")
|
set(CMAKE_MODULE_PATH "${old_CMAKE_MODULE_PATH}")
|
||||||
|
|
||||||
# note: target_deps example: "Qt5Core\;5.12.0;Qt5Gui\;5.12.0"
|
# note: target_deps example: "Qt6Core\;5.12.0;Qt6Gui\;5.12.0"
|
||||||
set(_target_deps "@target_deps@")
|
set(_target_deps "@target_deps@")
|
||||||
foreach(_target_dep ${_target_deps})
|
foreach(_target_dep ${_target_deps})
|
||||||
list(GET _target_dep 0 pkg)
|
list(GET _target_dep 0 pkg)
|
||||||
|
@ -17,7 +17,7 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Appends a 'debug postfix' to library targets (not executables)
|
# Appends a 'debug postfix' to library targets (not executables)
|
||||||
# e.g. lib/libQt5DBus_debug.5.12.0.dylib
|
# e.g. lib/libQt6DBus_debug.5.12.0.dylib
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(CMAKE_DEBUG_POSTFIX "d")
|
set(CMAKE_DEBUG_POSTFIX "d")
|
||||||
elseif(APPLE)
|
elseif(APPLE)
|
||||||
|
@ -60,7 +60,7 @@ CMake has a ninja backend that works quite well and is noticeably faster than ma
|
|||||||
cmake --build . # ... or ninja ;-)
|
cmake --build . # ... or ninja ;-)
|
||||||
```
|
```
|
||||||
|
|
||||||
You can look into the generated ``build.ninja`` file if you're curious and you can also build targets directory such as ``ninja lib/libQt5Core.so``.
|
You can look into the generated ``build.ninja`` file if you're curious and you can also build targets directory such as ``ninja lib/libQt6Core.so``.
|
||||||
|
|
||||||
When you're done with the build, you may want to install it, using ``ninja install`` or ``make install``. The installation prefix is chosen when running cmake though:
|
When you're done with the build, you may want to install it, using ``ninja install`` or ``make install``. The installation prefix is chosen when running cmake though:
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(localfortuneclient
|
add_qt_gui_executable(localfortuneclient
|
||||||
client.cpp client.h
|
client.cpp client.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(localfortuneserver
|
add_qt_gui_executable(localfortuneserver
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(sharedmemory
|
add_qt_gui_executable(sharedmemory
|
||||||
dialog.cpp dialog.h dialog.ui
|
dialog.cpp dialog.h dialog.ui
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(mimetypebrowser
|
add_qt_gui_executable(mimetypebrowser
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(cbordump
|
add_executable(cbordump
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(convert
|
add_executable(convert
|
||||||
cborconverter.cpp cborconverter.h
|
cborconverter.cpp cborconverter.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(savegame
|
add_executable(savegame
|
||||||
character.cpp character.h
|
character.cpp character.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(mandelbrot
|
add_qt_gui_executable(mandelbrot
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(queuedcustomtype
|
add_qt_gui_executable(queuedcustomtype
|
||||||
block.cpp block.h
|
block.cpp block.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(semaphores
|
add_executable(semaphores
|
||||||
semaphores.cpp
|
semaphores.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(waitconditions
|
add_executable(waitconditions
|
||||||
waitconditions.cpp
|
waitconditions.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(contiguouscache
|
add_qt_gui_executable(contiguouscache
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(customtype
|
add_qt_gui_executable(customtype
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(customtypesending
|
add_qt_gui_executable(customtypesending
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
# special case begin
|
# special case begin
|
||||||
set(chat_SRCS)
|
set(chat_SRCS)
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
|
|
||||||
add_qt_gui_executable(complexpong
|
add_qt_gui_executable(complexpong
|
||||||
complexpong.cpp complexpong.h
|
complexpong.cpp complexpong.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
|
|
||||||
add_qt_gui_executable(listnames
|
add_qt_gui_executable(listnames
|
||||||
listnames.cpp
|
listnames.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
|
|
||||||
add_qt_gui_executable(pong
|
add_qt_gui_executable(pong
|
||||||
ping-common.h
|
ping-common.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
# special case begin
|
# special case begin
|
||||||
set(car_SRCS)
|
set(car_SRCS)
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS DBus)
|
find_package(Qt6 COMPONENTS DBus)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
# special case begin
|
# special case begin
|
||||||
set(controller_SRCS)
|
set(controller_SRCS)
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(digiflip
|
add_qt_gui_executable(digiflip
|
||||||
digiflip.cpp
|
digiflip.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(flickable
|
add_qt_gui_executable(flickable
|
||||||
flickable.cpp flickable.h
|
flickable.cpp flickable.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(flightinfo
|
add_qt_gui_executable(flightinfo
|
||||||
flightinfo.cpp
|
flightinfo.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(lightmaps
|
add_qt_gui_executable(lightmaps
|
||||||
lightmaps.cpp lightmaps.h
|
lightmaps.cpp lightmaps.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(raycasting
|
add_qt_gui_executable(raycasting
|
||||||
raycasting.cpp raycasting.qrc
|
raycasting.cpp raycasting.qrc
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(styleexample
|
add_qt_gui_executable(styleexample
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.14)
|
cmake_minimum_required(VERSION 3.14)
|
||||||
project(analogclock LANGUAGES CXX)
|
project(analogclock LANGUAGES CXX)
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets) # special case: add
|
find_package(Qt6 COMPONENTS Widgets) # special case: add
|
||||||
|
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.14)
|
cmake_minimum_required(VERSION 3.14)
|
||||||
project(openglwindow LANGUAGES CXX)
|
project(openglwindow LANGUAGES CXX)
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets) # special case: add
|
find_package(Qt6 COMPONENTS Widgets) # special case: add
|
||||||
|
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.14)
|
cmake_minimum_required(VERSION 3.14)
|
||||||
project(rasterwindow LANGUAGES CXX)
|
project(rasterwindow LANGUAGES CXX)
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets) # special case: add
|
find_package(Qt6 COMPONENTS Widgets) # special case: add
|
||||||
|
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
@ -11,10 +11,10 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
find_package(Qt5 COMPONENTS Gui)
|
find_package(Qt6 COMPONENTS Gui)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_executable(bearermonitor
|
add_executable(bearermonitor
|
||||||
bearermonitor.cpp bearermonitor.h
|
bearermonitor.cpp bearermonitor.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(blockingfortuneclient
|
add_qt_gui_executable(blockingfortuneclient
|
||||||
blockingclient.cpp blockingclient.h
|
blockingclient.cpp blockingclient.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(broadcastreceiver
|
add_qt_gui_executable(broadcastreceiver
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(broadcastsender
|
add_qt_gui_executable(broadcastsender
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
|
|
||||||
add_executable(dnslookup
|
add_executable(dnslookup
|
||||||
dnslookup.cpp dnslookup.h
|
dnslookup.cpp dnslookup.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
|
|
||||||
add_executable(download
|
add_executable(download
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
|
|
||||||
add_executable(downloadmanager
|
add_executable(downloadmanager
|
||||||
downloadmanager.cpp downloadmanager.h
|
downloadmanager.cpp downloadmanager.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(fortuneclient
|
add_qt_gui_executable(fortuneclient
|
||||||
client.cpp client.h
|
client.cpp client.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(fortuneserver
|
add_qt_gui_executable(fortuneserver
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(googlesuggest
|
add_qt_gui_executable(googlesuggest
|
||||||
googlesuggest.cpp googlesuggest.h
|
googlesuggest.cpp googlesuggest.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(http
|
add_qt_gui_executable(http
|
||||||
authenticationdialog.ui
|
authenticationdialog.ui
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(loopback
|
add_qt_gui_executable(loopback
|
||||||
dialog.cpp dialog.h
|
dialog.cpp dialog.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(multicastreceiver
|
add_qt_gui_executable(multicastreceiver
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(multicastsender
|
add_qt_gui_executable(multicastsender
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(multistreamclient
|
add_qt_gui_executable(multistreamclient
|
||||||
chatconsumer.cpp chatconsumer.h
|
chatconsumer.cpp chatconsumer.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(multistreamserver
|
add_qt_gui_executable(multistreamserver
|
||||||
chatprovider.cpp chatprovider.h
|
chatprovider.cpp chatprovider.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(network-chat
|
add_qt_gui_executable(network-chat
|
||||||
chatdialog.cpp chatdialog.h chatdialog.ui
|
chatdialog.cpp chatdialog.h chatdialog.ui
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(securesocketclient
|
add_qt_gui_executable(securesocketclient
|
||||||
certificateinfo.cpp certificateinfo.h certificateinfo.ui
|
certificateinfo.cpp certificateinfo.h certificateinfo.ui
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
|
|
||||||
add_qt_gui_executable(secureudpclient
|
add_qt_gui_executable(secureudpclient
|
||||||
addressdialog.cpp addressdialog.h addressdialog.ui
|
addressdialog.cpp addressdialog.h addressdialog.ui
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
|
|
||||||
add_qt_gui_executable(secureudpserver
|
add_qt_gui_executable(secureudpserver
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(threadedfortuneserver
|
add_qt_gui_executable(threadedfortuneserver
|
||||||
dialog.cpp dialog.h
|
dialog.cpp dialog.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(torrent
|
add_qt_gui_executable(torrent
|
||||||
addtorrentdialog.cpp addtorrentdialog.h
|
addtorrentdialog.cpp addtorrentdialog.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Network)
|
find_package(Qt6 COMPONENTS Network)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(torrent
|
add_qt_gui_executable(torrent
|
||||||
addtorrentdialog.cpp addtorrentdialog.h
|
addtorrentdialog.cpp addtorrentdialog.h
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.14)
|
cmake_minimum_required(VERSION 3.14)
|
||||||
project(qrasterwindow LANGUAGES CXX)
|
project(qrasterwindow LANGUAGES CXX)
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Gui) # special case
|
find_package(Qt6 COMPONENTS Gui) # special case
|
||||||
|
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Gui)
|
find_package(Qt6 COMPONENTS Gui)
|
||||||
find_package(Qt5 COMPONENTS Core)
|
find_package(Qt6 COMPONENTS Core)
|
||||||
|
|
||||||
add_executable(windows
|
add_executable(windows
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(imagescaling
|
add_qt_gui_executable(imagescaling
|
||||||
imagescaling.cpp imagescaling.h
|
imagescaling.cpp imagescaling.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
|
|
||||||
add_executable(mapdemo
|
add_executable(mapdemo
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
find_package(Qt5 COMPONENTS Gui) # special case
|
find_package(Qt6 COMPONENTS Gui) # special case
|
||||||
|
|
||||||
add_executable(mapdemo
|
add_executable(mapdemo
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_executable(progressdialog
|
add_executable(progressdialog
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_executable(runfunction
|
add_executable(runfunction
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Concurrent)
|
find_package(Qt6 COMPONENTS Concurrent)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_executable(wordcount
|
add_executable(wordcount
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Test)
|
find_package(Qt6 COMPONENTS Test)
|
||||||
|
|
||||||
add_qt_gui_executable(tutorial1
|
add_qt_gui_executable(tutorial1
|
||||||
testqstring.cpp
|
testqstring.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Test)
|
find_package(Qt6 COMPONENTS Test)
|
||||||
|
|
||||||
add_qt_gui_executable(tutorial2
|
add_qt_gui_executable(tutorial2
|
||||||
testqstring.cpp
|
testqstring.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Test)
|
find_package(Qt6 COMPONENTS Test)
|
||||||
|
|
||||||
add_qt_gui_executable(tutorial3
|
add_qt_gui_executable(tutorial3
|
||||||
testgui.cpp
|
testgui.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Test)
|
find_package(Qt6 COMPONENTS Test)
|
||||||
|
|
||||||
add_qt_gui_executable(tutorial4
|
add_qt_gui_executable(tutorial4
|
||||||
testgui.cpp
|
testgui.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Test)
|
find_package(Qt6 COMPONENTS Test)
|
||||||
|
|
||||||
add_qt_gui_executable(tutorial5
|
add_qt_gui_executable(tutorial5
|
||||||
benchmarking.cpp
|
benchmarking.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(books
|
add_qt_gui_executable(books
|
||||||
bookdelegate.cpp bookdelegate.h
|
bookdelegate.cpp bookdelegate.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(cachedtable
|
add_qt_gui_executable(cachedtable
|
||||||
../connection.h
|
../connection.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(drilldown
|
add_qt_gui_executable(drilldown
|
||||||
../connection.h
|
../connection.h
|
||||||
|
@ -11,9 +11,9 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS Xml)
|
find_package(Qt6 COMPONENTS Xml)
|
||||||
|
|
||||||
add_qt_gui_executable(masterdetail
|
add_qt_gui_executable(masterdetail
|
||||||
database.h
|
database.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(querymodel
|
add_qt_gui_executable(querymodel
|
||||||
../connection.h
|
../connection.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(relationaltablemodel
|
add_qt_gui_executable(relationaltablemodel
|
||||||
../connection.h
|
../connection.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(sqlbrowser
|
add_qt_gui_executable(sqlbrowser
|
||||||
browser.cpp browser.h
|
browser.cpp browser.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(sqlwidgetmapper
|
add_qt_gui_executable(sqlwidgetmapper
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Sql)
|
find_package(Qt6 COMPONENTS Sql)
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(tablemodel
|
add_qt_gui_executable(tablemodel
|
||||||
../connection.h
|
../connection.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(animatedtiles
|
add_qt_gui_executable(animatedtiles
|
||||||
animatedtiles.qrc
|
animatedtiles.qrc
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(easing
|
add_qt_gui_executable(easing
|
||||||
animation.h
|
animation.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(moveblocks
|
add_qt_gui_executable(moveblocks
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(states
|
add_qt_gui_executable(states
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(stickman
|
add_qt_gui_executable(stickman
|
||||||
animation.cpp animation.h
|
animation.cpp animation.h
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS OpenGL) # special case
|
find_package(Qt6 COMPONENTS OpenGL) # special case
|
||||||
|
|
||||||
add_qt_gui_executable(sub-attaq
|
add_qt_gui_executable(sub-attaq
|
||||||
animationmanager.cpp animationmanager.h
|
animationmanager.cpp animationmanager.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(screenshot
|
add_qt_gui_executable(screenshot
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(systray
|
add_qt_gui_executable(systray
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(classwizard
|
add_qt_gui_executable(classwizard
|
||||||
classwizard.cpp classwizard.h classwizard.qrc
|
classwizard.cpp classwizard.h classwizard.qrc
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(extension
|
add_qt_gui_executable(extension
|
||||||
finddialog.cpp finddialog.h
|
finddialog.cpp finddialog.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(findfiles
|
add_qt_gui_executable(findfiles
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,8 +11,8 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
find_package(Qt5 COMPONENTS PrintSupport)
|
find_package(Qt6 COMPONENTS PrintSupport)
|
||||||
|
|
||||||
add_qt_gui_executable(licensewizard
|
add_qt_gui_executable(licensewizard
|
||||||
licensewizard.cpp licensewizard.h licensewizard.qrc
|
licensewizard.cpp licensewizard.h licensewizard.qrc
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(standarddialogs
|
add_qt_gui_executable(standarddialogs
|
||||||
dialog.cpp dialog.h
|
dialog.cpp dialog.h
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(tabdialog
|
add_qt_gui_executable(tabdialog
|
||||||
main.cpp
|
main.cpp
|
||||||
|
@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
|
|||||||
|
|
||||||
set(INSTALL_EXAMPLEDIR "examples")
|
set(INSTALL_EXAMPLEDIR "examples")
|
||||||
|
|
||||||
find_package(Qt5 COMPONENTS Widgets)
|
find_package(Qt6 COMPONENTS Widgets)
|
||||||
|
|
||||||
add_qt_gui_executable(trivialwizard
|
add_qt_gui_executable(trivialwizard
|
||||||
trivialwizard.cpp
|
trivialwizard.cpp
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user