diff options
Diffstat (limited to 'kue/CMakeLists.txt')
-rw-r--r-- | kue/CMakeLists.txt | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/kue/CMakeLists.txt b/kue/CMakeLists.txt new file mode 100644 index 00000000..1033bb7d --- /dev/null +++ b/kue/CMakeLists.txt @@ -0,0 +1,64 @@ +################################################################################ +# Improvements and feedback are welcome! # +# This software is licensed under the terms of the GNU GPL v3 license. # +################################################################################ + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libtdegames + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +### kue (library) ############################################################ +tde_add_library( + kue SHARED AUTOMOC + + SOURCES + billiard.cpp disc.cpp interface.cpp physics.cpp table.cpp global.cpp + vector.cpp cue.cpp graphics.cpp point.cpp sphere.cpp texture.cpp + utility.cpp newgame.cpp pluginloader.cpp rules.cpp localplayer.cpp + + LINK + tdegames-shared + GL + GLU + + DESTINATION ${LIB_INSTALL_DIR} +) + +### kue (executable) ######################################################### +tde_add_executable( + kue AUTOMOC + + SOURCES + main.cpp + + LINK + kue-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + +### modules #################################################################### +add_subdirectory(modules) + +### data ####################################################################### +tde_install_icons() + +install( + DIRECTORY textures/ + DESTINATION ${DATA_INSTALL_DIR}/kue/textures + FILES_MATCHING PATTERN *.png +) + +### translated desktop files ################################################### +tde_create_translated_desktop(kue.desktop) + +# kate: replace-tabs true; tab-width 2;
\ No newline at end of file |