Warning, /network/kio-s3/src/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: BSD-3-Clause
0002 # SPDX-FileCopyrightText: 2020 Elvis Angelaccio <elvis.angelaccio@kde.org>
0003 
0004 set(kio_s3_SRCS kio_s3.cpp s3backend.cpp s3url.cpp)
0005 
0006 ecm_qt_declare_logging_category(kio_s3_SRCS
0007     HEADER s3debug.h
0008     IDENTIFIER S3
0009     CATEGORY_NAME kf.kio.workers.s3)
0010 
0011 kcoreaddons_add_plugin(kio_s3
0012     SOURCES ${kio_s3_SRCS}
0013     INSTALL_NAMESPACE kf${QT_MAJOR_VERSION}/kio)
0014 
0015 target_link_libraries(kio_s3
0016     Qt${QT_MAJOR_VERSION}::Core
0017     Qt${QT_MAJOR_VERSION}::Network
0018     KF${QT_MAJOR_VERSION}::KIOCore
0019     KF${QT_MAJOR_VERSION}::KIOWidgets
0020     KF${QT_MAJOR_VERSION}::I18n
0021     ${AWSSDK_LINK_LIBRARIES})
0022 
0023 set_target_properties(kio_s3 PROPERTIES OUTPUT_NAME "s3")