296c3776a8
The example does not use OpenGL in Qt6 anymore so the dependency is not necessary. Change-Id: I6189a93eb65bd283ea7e85664582ab0b12a41639 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
63 lines
1.1 KiB
CMake
63 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(chip LANGUAGES CXX)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
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_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
|
|
Qt::Core
|
|
Qt::Gui
|
|
Qt::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 Qt::PrintSupport)
|
|
target_link_libraries(chip PUBLIC
|
|
Qt::PrintSupport
|
|
)
|
|
endif()
|
|
|
|
install(TARGETS chip
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|