summaryrefslogtreecommitdiffstats
path: root/tdepacman/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tdepacman/CMakeLists.txt')
-rw-r--r--tdepacman/CMakeLists.txt63
1 files changed, 63 insertions, 0 deletions
diff --git a/tdepacman/CMakeLists.txt b/tdepacman/CMakeLists.txt
new file mode 100644
index 0000000..f01bedd
--- /dev/null
+++ b/tdepacman/CMakeLists.txt
@@ -0,0 +1,63 @@
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+ ${TDEGAMES_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${TDE_LIB_DIR}
+ ${TDEGAMES_LIBRARY_DIRS}
+)
+
+
+##### tdepacman (executable)
+
+tde_add_executable( ${PROJECT_NAME} AUTOMOC
+
+ SOURCES
+ tdepacmanview.cpp
+ referee.cpp
+ status.cpp
+ painter.cpp
+ score.cpp
+ pacman.cpp
+ monster.cpp
+ keys.cpp
+ fruit.cpp
+ energizer.cpp
+ board.cpp
+ bitfont.cpp
+ tdepacman.cpp
+ main.cpp
+ LINK
+ tdeui-shared
+ tdecore-shared
+ ${TDEGAMES_LIBRARIES}
+
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+
+##### other data
+
+install(
+ FILES tdepacmanui.rc
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
+)
+
+install(
+ FILES tdepacmanrc
+ DESTINATION ${CONFIG_INSTALL_DIR}
+)
+
+
+tde_create_translated_desktop( ${PROJECT_NAME}.desktop )
+
+
+##### icons
+
+tde_install_icons( ${PROJECT_NAME} )