summaryrefslogtreecommitdiffstats
path: root/kue/CMakeLists.txt
blob: 1033bb7db8c46d35150b127a7bffc088e4422a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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;