mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-26 01:34:33 +00:00
27 lines
715 B
CMake
27 lines
715 B
CMake
#
|
|
# Copyright (C) 2020-2024 QuasarApp.
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
# of this license document, but changing it is not allowed.
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/bin)
|
|
|
|
add_subdirectory(TestCPPOnly)
|
|
add_subdirectory(TestOnlyC)
|
|
add_subdirectory(TestQMLWidgets)
|
|
add_subdirectory(TestQtWidgets)
|
|
|
|
if (NOT WIN32)
|
|
add_subdirectory(QMLFileDialog)
|
|
add_subdirectory(virtualkeyboard)
|
|
|
|
if (Qt${QT_VERSION_MAJOR}WebEngineQuick_FOUND)
|
|
add_subdirectory(quicknanobrowser)
|
|
add_subdirectory(webui)
|
|
endif()
|
|
endif()
|