summaryrefslogtreecommitdiffstats
path: root/kolf/CMakeLists.txt
blob: bd3588141b282d3d00172c987b18ba3f1962a58f (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#################################################
#
#  (C) 2016 Alexander Golubev
#  fatzer2 (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

add_subdirectory( objects )
add_subdirectory( sounds )
add_subdirectory( courses )
add_subdirectory( pics )
add_subdirectory( graphics )

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}
  ${ARTS_LIBRARY_DIRS}
)


##### kolf (tdeinit) ############################

tde_add_tdeinit_executable( kolf AUTOMOC
  SOURCES main.cpp
  LINK kolf-shared
)


##### kolf (shared) #############################

tde_add_library( kolf SHARED AUTOMOC
  SOURCES kolf.cpp game.cpp canvasitem.cpp ball.cpp newgame.cpp config.cpp
    scoreboard.cpp editor.cpp pluginloader.cpp object.cpp vector.cpp
    printdialogpage.cpp kcomboboxdialog.cpp kvolumecontrol.cpp floater.cpp
    slope.cpp
  VERSION 1.2.0
  LINK tdegames-shared tdeprint-shared tdeio-shared artskde-shared
  DESTINATION ${LIB_INSTALL_DIR}
)


##### headers ###################################

install( FILES ball.h game.h statedb.h config.h canvasitem.h object.h
    rtti.h vector.h floater.h slope.h
  DESTINATION ${INCLUDE_INSTALL_DIR}/kolf
)


##### other data ################################

add_custom_command ( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc"
  COMMAND file -C -m ${CMAKE_CURRENT_SOURCE_DIR}/kolf.magic
  DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/kolf.magic"
)

add_custom_target( kolf-magic-mgc ALL DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc" )

install( FILES x-kourse.desktop x-kolf.desktop
  DESTINATION ${MIME_INSTALL_DIR}/application
)

install( FILES kolf.magic "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc"
  DESTINATION ${CONFIG_INSTALL_DIR}/magic
)

install( FILES kolf.desktop
  DESTINATION ${XDG_APPS_INSTALL_DIR}
)

install( FILES kolfui.rc intro tutorial.kolf tutorial.kolfgame
  DESTINATION ${DATA_INSTALL_DIR}/kolf
)