Warning, /network/smb4k/helpers/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include_directories(
0002   ${CMAKE_CURRENT_SOURCE_DIR}
0003   ${CMAKE_CURRENT_BINARY_DIR}
0004   ${CMAKE_SOURCE_DIR}/core 
0005   ${CMAKE_BINARY_DIR}/core)
0006 
0007 set(smb4kmounthelper_SRCS smb4kmounthelper.cpp)
0008 
0009 add_executable(mounthelper ${smb4kmounthelper_SRCS})
0010 
0011 target_link_libraries(mounthelper
0012   smb4kcore
0013   Qt5::Core
0014   ${AUTHLIB}
0015   KF5::CoreAddons
0016   KF5::I18n
0017   KF5::KIOCore)
0018 
0019 install(TARGETS mounthelper DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
0020 
0021 kauth_install_helper_files(mounthelper org.kde.smb4k.mounthelper root)
0022 kauth_install_actions(org.kde.smb4k.mounthelper smb4kmounthelper.actions)
0023 
0024