Warning, /games/kmuddy/plugins/converter/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 include_directories( ${CMAKE_SOURCE_DIR}/libs ${CMAKE_CURRENT_BINARY_DIR}    )
0003 
0004 
0005 ########### next target ###############
0006 
0007 set(kmuddyconverterplugin_PART_SRCS
0008     converterplugin.cpp
0009     converterdialog.cpp
0010     cgenericitem.cpp
0011     cgenericlist.cpp
0012     csaveablefield.cpp
0013     csaveablelist.cpp
0014     caction.cpp
0015     calias.cpp
0016     cconnprefs.cpp
0017     cgauge.cpp
0018     cscript.cpp
0019     cshortcut.cpp
0020     cstatusvar.cpp
0021     ctimer.cpp
0022     ctrigger.cpp
0023     cvalue.cpp
0024     cvariable.cpp
0025     cvartrigger.cpp
0026     )
0027 
0028 add_library(kmuddyconverterplugin MODULE ${kmuddyconverterplugin_PART_SRCS})
0029 
0030 target_link_libraries(kmuddyconverterplugin  KF5::KDELibs4Support KF5::Parts  kmuddycore )
0031 
0032 install(TARGETS kmuddyconverterplugin DESTINATION ${KDE_INSTALL_PLUGINDIR} )
0033 
0034 
0035 ########### install files ###############
0036 
0037 install( FILES  kmuddyconverterplugin.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} )
0038