2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
2021-08-16 16:14:46 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-06-04 15:08:47 +00:00
|
|
|
project(notepad LANGUAGES CXX)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
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/tutorials/notepad")
|
2020-02-04 07:15:50 +00:00
|
|
|
|
2021-12-02 07:54:27 +00:00
|
|
|
find_package(Qt6
|
|
|
|
REQUIRED COMPONENTS Core Gui Widgets
|
|
|
|
OPTIONAL_COMPONENTS PrintSupport
|
|
|
|
)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(notepad
|
2019-06-04 15:08:47 +00:00
|
|
|
main.cpp
|
2020-02-04 07:15:50 +00:00
|
|
|
notepad.cpp notepad.h notepad.ui
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
2021-12-08 16:25:35 +00:00
|
|
|
|
2020-10-26 15:22:32 +00:00
|
|
|
set_target_properties(notepad PROPERTIES
|
|
|
|
WIN32_EXECUTABLE TRUE
|
|
|
|
MACOSX_BUNDLE TRUE
|
|
|
|
)
|
2021-12-08 16:25:35 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
target_link_libraries(notepad PUBLIC
|
2020-02-04 07:15:50 +00:00
|
|
|
Qt::Core
|
|
|
|
Qt::Gui
|
2020-03-16 17:49:44 +00:00
|
|
|
Qt::Widgets
|
2020-02-04 07:15:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Resources:
|
|
|
|
set(notepad_resource_files
|
|
|
|
"images/bold.png"
|
|
|
|
"images/copy.png"
|
|
|
|
"images/create.png"
|
|
|
|
"images/cut.png"
|
|
|
|
"images/edit_redo.png"
|
|
|
|
"images/edit_undo.png"
|
|
|
|
"images/exit.png"
|
|
|
|
"images/font.png"
|
|
|
|
"images/info.png"
|
|
|
|
"images/italic.png"
|
|
|
|
"images/new.png"
|
|
|
|
"images/open.png"
|
|
|
|
"images/paste.png"
|
|
|
|
"images/pencil.png"
|
|
|
|
"images/print.png"
|
|
|
|
"images/save.png"
|
|
|
|
"images/save_as.png"
|
|
|
|
"images/underline.png"
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
2020-02-04 07:15:50 +00:00
|
|
|
|
2021-12-08 14:59:33 +00:00
|
|
|
qt_add_resources(notepad "notepad"
|
2020-02-04 07:15:50 +00:00
|
|
|
PREFIX
|
|
|
|
"/"
|
|
|
|
FILES
|
|
|
|
${notepad_resource_files}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(TARGET Qt::PrintSupport)
|
2019-06-04 15:08:47 +00:00
|
|
|
target_link_libraries(notepad PUBLIC
|
2019-03-20 12:41:37 +00:00
|
|
|
Qt::PrintSupport
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
install(TARGETS notepad
|
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-12 08:21:40 +00:00
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-03-20 12:41:37 +00:00
|
|
|
)
|