Warning, /games/kapman/src/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 ecm_setup_version(${RELEASE_SERVICE_VERSION} 0002 VARIABLE_PREFIX KAPMAN 0003 VERSION_HEADER kapman_version.h 0004 ) 0005 0006 add_executable(kapman) 0007 0008 target_sources(kapman PRIVATE 0009 bonus.cpp 0010 bonus.h 0011 cell.cpp 0012 cell.h 0013 character.cpp 0014 character.h 0015 characteritem.cpp 0016 characteritem.h 0017 element.cpp 0018 element.h 0019 elementitem.cpp 0020 elementitem.h 0021 energizer.cpp 0022 energizer.h 0023 game.cpp 0024 game.h 0025 gamescene.cpp 0026 gamescene.h 0027 gameview.cpp 0028 gameview.h 0029 ghost.cpp 0030 ghost.h 0031 ghostitem.cpp 0032 ghostitem.h 0033 kapman.cpp 0034 kapman.h 0035 kapmanitem.cpp 0036 kapmanitem.h 0037 kapmanmainwindow.cpp 0038 kapmanmainwindow.h 0039 kapmanparser.cpp 0040 kapmanparser.h 0041 main.cpp 0042 maze.cpp 0043 maze.h 0044 mazeitem.cpp 0045 mazeitem.h 0046 pill.cpp 0047 pill.h 0048 0049 kapman.qrc 0050 ) 0051 0052 kconfig_add_kcfg_files(kapman settings.kcfgc) 0053 0054 file(GLOB ICONS_SRCS "${CMAKE_SOURCE_DIR}/icons/*-apps-kapman.png") 0055 ecm_add_app_icon(kapman ICONS ${ICONS_SRCS}) 0056 0057 if (QT_MAJOR_VERSION STREQUAL "6") 0058 target_link_libraries(kapman KDEGames6) 0059 else() 0060 target_link_libraries(kapman KF5KDEGames) 0061 endif() 0062 0063 target_link_libraries(kapman 0064 KF${KF_MAJOR_VERSION}::CoreAddons 0065 KF${KF_MAJOR_VERSION}::DBusAddons 0066 KF${KF_MAJOR_VERSION}::XmlGui 0067 KF${KF_MAJOR_VERSION}::Crash 0068 Qt${QT_MAJOR_VERSION}::Svg 0069 Qt${QT_MAJOR_VERSION}::Xml 0070 ) 0071 if (QT_MAJOR_VERSION STREQUAL "6") 0072 target_link_libraries(kapman Qt6::SvgWidgets) 0073 endif() 0074 install(TARGETS kapman ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) 0075 install(PROGRAMS org.kde.kapman.desktop DESTINATION ${KDE_INSTALL_APPDIR}) 0076 install(FILES org.kde.kapman.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) 0077 install(FILES defaultmaze.xml DESTINATION ${KDE_INSTALL_DATADIR}/kapman)