You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepacman/tdepacman/CMakeLists.txt

64 lines
1.0 KiB

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} )