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 target_link_libraries(kapman
0058 KDEGames6
0059 KF6::CoreAddons
0060 KF6::DBusAddons
0061 KF6::XmlGui
0062 KF6::Crash
0063 KF6::I18n
0064 Qt6::Svg
0065 Qt6::SvgWidgets
0066 Qt6::Xml
0067 )
0068
0069 install(TARGETS kapman ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0070 install(PROGRAMS org.kde.kapman.desktop DESTINATION ${KDE_INSTALL_APPDIR})
0071 install(FILES org.kde.kapman.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
0072 install(FILES defaultmaze.xml DESTINATION ${KDE_INSTALL_DATADIR}/kapman)