d221ea609f
Some CMakeLists.txt files did link to Qt6::PrintSupport twice. Also unify formatting and order of the linker step. Change-Id: I4af935c5dc3de6c243aad8511b0803ceaa872589 Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
64 lines
1.2 KiB
CMake
64 lines
1.2 KiB
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(chip LANGUAGES CXX)
|
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
endif()
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/graphicsview/chip")
|
|
|
|
find_package(Qt6
|
|
REQUIRED COMPONENTS Core Gui Widgets
|
|
OPTIONAL_COMPONENTS PrintSupport
|
|
)
|
|
|
|
qt_standard_project_setup()
|
|
|
|
qt_add_executable(chip
|
|
chip.cpp chip.h
|
|
main.cpp
|
|
mainwindow.cpp mainwindow.h
|
|
view.cpp view.h
|
|
)
|
|
|
|
set_target_properties(chip PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
MACOSX_BUNDLE TRUE
|
|
)
|
|
|
|
target_link_libraries(chip PUBLIC
|
|
Qt6::Core
|
|
Qt6::Gui
|
|
Qt6::Widgets
|
|
)
|
|
|
|
# Resources:
|
|
set(images_resource_files
|
|
"fileprint.png"
|
|
"qt4logo.png"
|
|
"rotateleft.png"
|
|
"rotateright.png"
|
|
"zoomin.png"
|
|
"zoomout.png"
|
|
)
|
|
|
|
qt_add_resources(chip "images"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${images_resource_files}
|
|
)
|
|
|
|
if(TARGET Qt6::PrintSupport)
|
|
target_link_libraries(chip PUBLIC Qt6::PrintSupport)
|
|
endif()
|
|
|
|
install(TARGETS chip
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|