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

0001 # SPDX-License-Identifier: BSD-3-Clause
0002 # SPDX-FileCopyrightText: 2017 Elvis Angelaccio <elvis.angelaccio@kde.org>
0003 
0004 include_directories(${CMAKE_BINARY_DIR})
0005 
0006 set(symmy_SRCS
0007     main.cpp
0008     compositejob.cpp
0009     decryptjob.cpp
0010     encryptjob.cpp
0011     job.cpp)
0012 
0013 ecm_qt_declare_logging_category(symmy_SRCS
0014     HEADER symmydebug.h
0015     IDENTIFIER SYMMY
0016     CATEGORY_NAME org.kde.symmy)
0017 
0018 add_executable(symmy ${symmy_SRCS})
0019 
0020 target_link_libraries(symmy
0021     Qt5::Widgets
0022     KF5::CoreAddons
0023     KF5::KIOCore
0024     KF5::I18n
0025     KF5::WidgetsAddons
0026     QGpgme
0027     gpg-error)
0028 
0029 install(TARGETS symmy DESTINATION ${KDE_INSTALL_BINDIR})