blob: 765e739371d4b3e9f37aaea870ea5d24fb34f902 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
###########################################
# #
# (C) 2016 Alexander Golubev #
# fatzer2 (AT) gmail.com #
# #
# Improvements and feedback are welcome #
# #
# This file is released under GPL >= 2 #
# #
###########################################
# required stuff
find_package( TQt )
find_package( TDE )
tde_setup_architecture_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
tde_setup_largefiles( )
##### check for gcc visibility support
if( WITH_GCC_VISIBILITY )
tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )
#### check for headers
check_include_file( "stropts.h" HAVE_STROPTS_H )
check_include_file( "sys/filio.h" HAVE_SYS_FILIO_H )
check_include_file( "sys/select.h" HAVE_SYS_SELECT_H )
check_include_file( "sysent.h" HAVE_SYSENT_H )
check_symbol_exists( usleep "unistd.h" HAVE_USLEEP )
check_symbol_exists( strlcpy "string.h" HAVE_USLEEP )
# NOTE: Borrowed from tdelibs
# FIXME I'm not sure if test TIME_WITH_SYS_TIME are correct
check_include_file( "sys/time.h" HAVE_SYS_TIME_H )
check_include_file( "time.h" HAVE_TIME_H )
if( HAVE_SYS_TIME_H AND HAVE_TIME_H )
set( TIME_WITH_SYS_TIME 1 )
endif()
# check for arts
if( WITH_ARTS )
pkg_search_module( ARTS arts )
if( ARTS_FOUND )
set( HAVE_ARTS 1 )
else()
tde_message_fatal( "aRts is requested, but was not found on your system" )
endif()
else( WITH_ARTS )
if (BUILD_KASTEROIDS OR BUILD_KOLF)
tde_message_fatal( "aRts support is disabled, but it is required to build kasteroids and kolf" )
endif()
endif( WITH_ARTS )
##### Import libtdegames
##### All these games require libtdegames
if( BUILD_ATLANTIK OR
BUILD_KASTEROIDS OR
BUILD_KATOMIC OR
BUILD_KBACKGAMMON OR
BUILD_KBATTLESHIP OR
BUILD_KBLACKBOX OR
BUILD_KBOUNCE OR
BUILD_KENOLABA OR
BUILD_KFOULEGGS OR
BUILD_KGOLDRUNNER OR
BUILD_KJUMPINGCUBE OR
BUILD_KLICKETY OR
BUILD_KLINES OR
BUILD_KMAHJONGG OR
BUILD_KMINES OR
BUILD_KNETWALK OR
BUILD_KOLF OR
BUILD_KONQUEST OR
BUILD_KPAT OR
BUILD_KPOKER OR
BUILD_KREVERSI OR
BUILD_KSAME OR
BUILD_KSHISEN OR
BUILD_KSIRTET OR
BUILD_KSMILETRIS OR
BUILD_KSNAKE OR
BUILD_KSOKOBAN OR
BUILD_KSPACEDUEL OR
BUILD_KTRON OR
BUILD_KTUBERLING OR
BUILD_LSKAT OR
BUILD_TWIN4 )
tde_import ( libtdegames )
endif()
|