2023-03-23 15:25:43 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2023-01-26 17:31:16 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(documentviewer LANGUAGES CXX)
|
|
|
|
|
2023-05-05 10:02:26 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
|
|
|
|
# OPTIONAL_COMPONENTS PrintSupport PdfWidgets)
|
2023-01-26 17:31:16 +00:00
|
|
|
|
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(TARGET Qt6::PrintSupport)
|
2023-03-23 15:25:43 +00:00
|
|
|
add_compile_definitions(QT_DOCUMENTVIEWER_PRINTSUPPORT)
|
2023-01-26 17:31:16 +00:00
|
|
|
endif()
|
|
|
|
|
2023-03-23 15:25:43 +00:00
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/demos/documentviewer")
|
|
|
|
|
|
|
|
add_subdirectory(app)
|
|
|
|
add_subdirectory(plugins)
|