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

0001 
0002 include_directories( 
0003    ${CMAKE_CURRENT_SOURCE_DIR}
0004    ${CMAKE_CURRENT_BINARY_DIR} )
0005 
0006 
0007 ########### next target ###############
0008 
0009 set(kmuddycore_LIB_SRCS 
0010    calias.cpp 
0011    caliaseditor.cpp 
0012    caliaslist.cpp 
0013    cansiparser.cpp 
0014    ccmdprocessor.cpp 
0015    cconsole.cpp 
0016    cdownloader.cpp 
0017    cmsp.cpp 
0018    cinputline.cpp
0019    cprofilesettings.cpp
0020    cprofilemanager.cpp
0021    cstatus.cpp 
0022    ctextchunk.cpp 
0023    ctabwidget.cpp
0024    cprompt.cpp 
0025    csoundplayer.cpp 
0026    cvariable.cpp 
0027    cvariablelist.cpp 
0028    cactionmanager.cpp 
0029    cactionbase.cpp 
0030    cmacromanager.cpp 
0031    cvalue.cpp 
0032    coutput.cpp 
0033    ccmdqueue.cpp 
0034    ccmdqueues.cpp 
0035    ccmdparser.cpp 
0036    arith-exp.cpp 
0037    flex-out.cpp 
0038    bison-input.tab.cpp 
0039    cexpresolver.cpp 
0040    cmenumanager.cpp 
0041    cdialoglist.cpp 
0042    cplugin.cpp 
0043    cpluginmanager.cpp 
0044    cglobalsettings.cpp 
0045    cpattern.cpp 
0046    clistobject.cpp 
0047    clist.cpp 
0048    clistgroup.cpp
0049    clistmanager.cpp
0050    clistviewer.cpp
0051    clisteditor.cpp
0052    clistgroupeditor.cpp
0053    cscripteval.cpp
0054    cscripteditor.cpp )
0055 
0056 add_library(kmuddycore SHARED ${kmuddycore_LIB_SRCS})
0057 
0058 target_link_libraries(kmuddycore KF5::KCMUtils KF5::CoreAddons KF5::I18n KF5::TextWidgets KF5::XmlGui KF5::KIOCore KF5::Completion Qt5::Script Qt5::Multimedia)
0059 
0060 set_target_properties(kmuddycore PROPERTIES VERSION 2.0.0 SOVERSION 2 )
0061 install(TARGETS kmuddycore DESTINATION ${KDE_INSTALL_LIBDIR} )
0062 
0063 
0064 ########### install files ###############
0065 
0066 install( FILES  kmuddyplugin.desktop DESTINATION ${KDE_INSTALL_KSERVICETYPES5DIR} )
0067 install( FILES cplugin.h arith-exp.h cactionbase.h cactionmanager.h calias.h caliaslist.h cansiparser.h ccmdparser.h ccmdprocessor.h ccmdqueue.h cconsole.h cdownloader.h cexpresolver.h cinputline.h cmacromanager.h cmsp.h coutput.h cprompt.h csoundplayer.h cstatus.h ctextchunk.h cvalue.h cvariable.h cvariablelist.h cmenumanager.h cdialoglist.h cglobalsettings.h clistobject.h clist.h cpattern.h clistgroup.h clistmanager.h clistviewer.h clisteditor.h clistgroupeditor.h cprofilesettings.h cprofilemanager.h ctabwidget.h DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kmuddy )
0068 
0069