Warning, /network/kdeconnect-kde/plugins/sftp/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # Find fusermount -- otherwise fallback to umount
0002 find_program(HAVE_FUSERMOUNT fusermount)
0003 configure_file(config-sftp.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-sftp.h )
0004 
0005 if(WIN32)
0006     set(kdeconnect_sftp_SRCS
0007         sftpplugin-win.cpp
0008     )
0009 else()
0010     set(kdeconnect_sftp_SRCS
0011         mounter.cpp
0012         mountloop.cpp
0013         sftpplugin.cpp
0014     )
0015 endif()
0016 
0017 kdeconnect_add_plugin(kdeconnect_sftp SOURCES ${kdeconnect_sftp_SRCS})
0018 target_link_libraries(kdeconnect_sftp
0019     kdeconnectcore
0020     Qt::DBus
0021     KF6::I18n
0022     KF6::KIOFileWidgets
0023     KF6::KIOWidgets
0024     KF6::Notifications
0025 )