qt5base-lts/examples/widgets/graphicsview/padnavigator/CMakeLists.txt
Johan Klokkhammer Helsing 00eeed234f Move QOpenGLWidget from QtOpenGL to its own module
Same pattern as QtQuickWidgets. Gets rid of QtOpenGL's dependency on QtWidgets.

Task-number: QTBUG-74409
Change-Id: I4f9b55c23e25a1e0519734037b768a16e870c7d2
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
2020-02-18 09:22:51 +01:00

66 lines
1.4 KiB
CMake

# Generated from padnavigator.pro.
cmake_minimum_required(VERSION 3.14)
project(padnavigator LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(INSTALL_EXAMPLEDIR "examples/widgets/graphicsview/padnavigator")
find_package(Qt6 COMPONENTS Core)
find_package(Qt6 COMPONENTS Gui)
find_package(Qt6 COMPONENTS Widgets)
find_package(Qt6 COMPONENTS OpenGL) # special case
add_executable(padnavigator
flippablepad.cpp flippablepad.h
form.ui
main.cpp
padnavigator.cpp padnavigator.h
roundrectitem.cpp roundrectitem.h
splashitem.cpp splashitem.h
)
target_link_libraries(padnavigator PUBLIC
Qt::Core
Qt::Gui
Qt::Widgets
)
# Resources:
set(padnavigator_resource_files
"images/artsfftscope.png"
"images/blue_angle_swirl.jpg"
"images/kontact_contacts.png"
"images/kontact_journal.png"
"images/kontact_mail.png"
"images/kontact_notes.png"
"images/kopeteavailable.png"
"images/metacontact_online.png"
"images/minitools.png"
)
qt6_add_resources(padnavigator "padnavigator"
PREFIX
"/"
FILES
${padnavigator_resource_files}
)
if(TARGET Qt::OpenGL)
target_link_libraries(padnavigator PUBLIC
Qt::OpenGL
Qt::OpenGLWidgets
)
endif()
install(TARGETS padnavigator
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)