CQtDeployer/testcases/CMakeLists.txt

27 lines
715 B
CMake
Raw Normal View History

2022-08-20 13:16:49 +03:00
#
2023-12-31 09:24:12 +01:00
# Copyright (C) 2020-2024 QuasarApp.
2022-08-20 13:16:49 +03:00
# 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)
2022-10-20 16:09:55 +03:00
if (NOT WIN32)
add_subdirectory(QMLFileDialog)
add_subdirectory(virtualkeyboard)
2024-12-21 19:41:36 +01:00
2024-12-21 22:34:42 +01:00
if (Qt${QT_VERSION_MAJOR}WebEngineQuick_FOUND)
2024-12-21 19:41:36 +01:00
add_subdirectory(quicknanobrowser)
add_subdirectory(webui)
endif()
2022-10-20 16:09:55 +03:00
endif()