2023-03-23 15:25:43 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2024-03-12 14:56:50 +00:00
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2023-03-23 15:25:43 +00:00
|
|
|
|
2023-01-26 17:31:16 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2025-06-30 15:05:30 +00:00
|
|
|
project(DocumentViewer LANGUAGES CXX)
|
2023-01-26 17:31:16 +00:00
|
|
|
|
2025-07-10 10:18:27 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets LinguistTools
|
2023-10-09 15:06:44 +00:00
|
|
|
OPTIONAL_COMPONENTS PrintSupport Pdf PdfWidgets Quick3D)
|
2023-01-26 17:31:16 +00:00
|
|
|
|
2025-05-02 07:13:49 +00:00
|
|
|
qt_standard_project_setup(REQUIRES 6.8
|
|
|
|
I18N_TRANSLATED_LANGUAGES de
|
|
|
|
)
|
2023-06-07 13:48:22 +00:00
|
|
|
|
2023-06-20 12:20:47 +00:00
|
|
|
add_compile_definitions(QT_NO_CAST_FROM_ASCII)
|
|
|
|
|
2023-03-23 15:25:43 +00:00
|
|
|
add_subdirectory(plugins)
|
2024-09-24 10:24:04 +00:00
|
|
|
add_subdirectory(app)
|