2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 13:21:34 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 11:26:52 +00:00
|
|
|
|
2021-08-16 16:14:46 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-06-04 15:08:47 +00:00
|
|
|
project(undoframework LANGUAGES CXX)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
2021-12-08 16:25:35 +00:00
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
2020-07-07 13:24:45 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/tools/undoframework")
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2021-12-02 07:54:27 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
|
2019-06-04 15:08:47 +00:00
|
|
|
|
2022-11-15 21:00:14 +00:00
|
|
|
qt_standard_project_setup()
|
|
|
|
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(undoframework
|
2019-06-04 15:08:47 +00:00
|
|
|
commands.cpp commands.h
|
|
|
|
diagramitem.cpp diagramitem.h
|
|
|
|
diagramscene.cpp diagramscene.h
|
|
|
|
main.cpp
|
|
|
|
mainwindow.cpp mainwindow.h
|
|
|
|
)
|
2021-12-08 16:25:35 +00:00
|
|
|
|
2020-10-26 15:22:32 +00:00
|
|
|
set_target_properties(undoframework PROPERTIES
|
|
|
|
WIN32_EXECUTABLE TRUE
|
|
|
|
MACOSX_BUNDLE TRUE
|
|
|
|
)
|
2021-12-08 16:25:35 +00:00
|
|
|
|
2022-11-21 11:03:41 +00:00
|
|
|
target_link_libraries(undoframework PRIVATE
|
2022-11-14 13:49:32 +00:00
|
|
|
Qt6::Core
|
|
|
|
Qt6::Gui
|
|
|
|
Qt6::Widgets
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
|
|
|
|
2020-02-04 07:15:50 +00:00
|
|
|
# Resources:
|
|
|
|
set(undoframework_resource_files
|
2023-01-09 12:55:09 +00:00
|
|
|
"icons/cross.png"
|
|
|
|
"icons/rectangle.png"
|
|
|
|
"icons/redo.png"
|
|
|
|
"icons/remove.png"
|
|
|
|
"icons/triangle.png"
|
|
|
|
"icons/undo.png"
|
2020-02-04 07:15:50 +00:00
|
|
|
)
|
|
|
|
|
2021-12-08 14:59:33 +00:00
|
|
|
qt_add_resources(undoframework "undoframework"
|
2020-02-04 07:15:50 +00:00
|
|
|
PREFIX
|
|
|
|
"/"
|
|
|
|
FILES
|
|
|
|
${undoframework_resource_files}
|
|
|
|
)
|
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
install(TARGETS undoframework
|
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-12 08:21:40 +00:00
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|