Warning, /office/marknote/src/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: BSD-3-Clause
0002 # SPDX-FileCopyrightText: 2021 Mathis BrĂ¼chert <mbb-mail@gmx.de>
0003 
0004 add_executable(marknote main.cpp documenthandler.cpp notesmodel.cpp notebooksmodel.cpp contents/ui/resources.qrc)
0005 target_link_libraries(marknote PRIVATE
0006     Qt::Core
0007     Qt::Gui
0008     Qt::Qml
0009     Qt::Quick
0010     Qt::QuickControls2
0011     Qt::Svg
0012     KF${QT_MAJOR_VERSION}::I18n
0013     KF${QT_MAJOR_VERSION}::ConfigCore
0014     KF${QT_MAJOR_VERSION}::CoreAddons
0015 )
0016 
0017 if (NOT ANDROID)
0018     target_link_libraries(marknote PRIVATE Qt::Widgets)
0019 endif()
0020 install(TARGETS marknote ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})