mirror of https://github.com/qt/qtdoc.git
42 lines
1000 B
CMake
42 lines
1000 B
CMake
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets
|
|
OPTIONAL_COMPONENTS PrintSupport)
|
|
|
|
qt_add_plugin(imageviewer
|
|
CLASS_NAME ImageViewer
|
|
imageviewer.cpp imageviewer.h
|
|
)
|
|
|
|
set_target_properties(imageviewer PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/app"
|
|
)
|
|
|
|
target_include_directories(imageviewer PRIVATE
|
|
../../app
|
|
)
|
|
|
|
target_link_libraries(imageviewer PRIVATE
|
|
Qt6::Core
|
|
Qt6::Gui
|
|
Qt6::Widgets
|
|
abstractviewer
|
|
)
|
|
|
|
if(TARGET Qt6::PrintSupport)
|
|
target_link_libraries(imageviewer PRIVATE Qt6::PrintSupport)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
set(install_destination "${CMAKE_INSTALL_BINDIR}/app")
|
|
elseif(APPLE)
|
|
set(install_destination ".")
|
|
else()
|
|
set(install_destination "${CMAKE_INSTALL_BINDIR}")
|
|
endif()
|
|
install(TARGETS imageviewer
|
|
RUNTIME DESTINATION "${install_destination}"
|
|
LIBRARY DESTINATION "${install_destination}"
|
|
)
|