author | unc0rr |
Mon, 16 Nov 2009 16:51:26 +0000 | |
changeset 2625 | 7bdca4b4092d |
parent 2609 | b67624c7d61e |
child 2629 | be70fd3458c0 |
permissions | -rw-r--r-- |
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
2213
diff
changeset
|
1 |
configure_file(${hedgewars_SOURCE_DIR}/hedgewars/proto.inc.in ${CMAKE_CURRENT_BINARY_DIR}/proto.inc) |
271 | 2 |
|
2420 | 3 |
find_package(SDL) |
4 |
find_package(SDL_image) |
|
5 |
find_package(SDL_net) |
|
6 |
find_package(SDL_ttf) |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
7 |
find_package(SDL_mixer) |
2401 | 8 |
|
2406 | 9 |
|
10 |
#SOURCE AND PROGRAMS SECTION |
|
184 | 11 |
set(fpc_tryexe fpc) |
2326
0ddf641fddee
rename dpr -> pas, restores ammos on two columns, minor fixes to openalbridge
koda
parents:
2251
diff
changeset
|
12 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
184 | 13 |
|
220 | 14 |
set(engine_sources |
15 |
${hwengine_project} |
|
16 |
SDLh.pas |
|
17 |
uAI.pas |
|
18 |
uAIActions.pas |
|
19 |
uAIAmmoTests.pas |
|
20 |
uAIMisc.pas |
|
288 | 21 |
uAmmos.pas |
942 | 22 |
uChat.pas |
220 | 23 |
uCollisions.pas |
24 |
uConsole.pas |
|
25 |
uConsts.pas |
|
357 | 26 |
uFloat.pas |
220 | 27 |
uGame.pas |
28 |
uGears.pas |
|
29 |
uIO.pas |
|
30 |
uKeys.pas |
|
31 |
uLand.pas |
|
32 |
uLandGraphics.pas |
|
33 |
uLandObjects.pas |
|
34 |
uLandTemplates.pas |
|
1806 | 35 |
uLandTexture.pas |
220 | 36 |
uLocale.pas |
37 |
uMisc.pas |
|
38 |
uRandom.pas |
|
368 | 39 |
uSHA.pas |
220 | 40 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
41 |
uStats.pas |
220 | 42 |
uStore.pas |
43 |
uTeams.pas |
|
593 | 44 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
45 |
uVisualGears.pas |
220 | 46 |
uWorld.pas |
47 |
CCHandlers.inc |
|
48 |
GSHandlers.inc |
|
49 |
HHHandlers.inc |
|
357 | 50 |
SinTable.inc |
220 | 51 |
options.inc |
781 | 52 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 53 |
tunsetborder.inc |
54 |
) |
|
55 |
||
184 | 56 |
find_program(fpc_executable ${fpc_tryexe}) |
57 |
||
58 |
if (fpc_executable) |
|
59 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
|
60 |
endif (fpc_executable) |
|
61 |
||
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
62 |
set (noexecstack_flags "-k-z" "-knoexecstack") |
781 | 63 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
64 |
|
781 | 65 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
66 |
ARGS ${noexecstack_flags} checkstack.pas |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
67 |
OUTPUT_VARIABLE noout |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
68 |
RETURN_VALUE testnoexecstack) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
69 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
70 |
if (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
71 |
set (noexecstack_flags "") |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
72 |
endif (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
73 |
|
2406 | 74 |
|
75 |
#PASCAL DETECTION SECTION |
|
76 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
|
77 |
||
78 |
if (fpc_version) |
|
79 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
80 |
string(REGEX REPLACE "[0-9]+\\.([0-9]+)\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
81 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
82 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
|
83 |
if (fpc_ver LESS "020200") |
|
84 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0") |
|
85 |
else() |
|
86 |
set(pascal_compiler ${fpc_executable}) |
|
87 |
endif () |
|
88 |
endif (fpc_version) |
|
89 |
||
90 |
if (NOT pascal_compiler) |
|
91 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
92 |
endif (NOT pascal_compiler) |
|
93 |
||
94 |
||
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
95 |
set(pascal_compiler_flags ${noexecstack_flags} ${pascal_compiler_flags_cmn} ${hwengine_project}) |
2406 | 96 |
|
97 |
if(LOWRES) |
|
98 |
set(pascal_compiler_flags "-dLOWRES" ${pascal_compiler_flags} ${hwengine_project}) |
|
99 |
endif(LOWRES) |
|
100 |
||
101 |
||
102 |
#DEPENDECIES AND EXECUTABLES SECTION |
|
1997 | 103 |
IF(APPLE) |
2401 | 104 |
#let's build sdlmain, which is absent from the framework |
2420 | 105 |
find_package(SDL REQUIRED) |
106 |
||
2401 | 107 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
108 |
include_directories(${SDL_INCLUDE_DIR}) |
|
109 |
link_libraries(${SDL_LIBRARY}) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
110 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
111 |
if(universal_build) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
112 |
#apparently this variable is not exported here |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
113 |
set(CMAKE_OSX_ARCHITECTURES "i386;ppc7400") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
114 |
endif() |
2016 | 115 |
|
2401 | 116 |
add_library (SDLmain STATIC SDLMain.m) |
117 |
set(engine_sources SDLmain ${engine_sources}) |
|
1997 | 118 |
ENDIF(APPLE) |
119 |
||
2609 | 120 |
IF(build_type MATCHES "standard") |
2003 | 121 |
#here is the standard command for any system |
2609 | 122 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 123 |
COMMAND "${pascal_compiler}" |
124 |
ARGS ${pascal_compiler_flags} |
|
125 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 126 |
DEPENDS ${engine_sources} |
781 | 127 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
128 |
ELSE() |
2609 | 129 |
#these are the dependencies for building a universal binary on Mac OS X |
130 |
find_program(pascal_x86 NAMES ppc386) |
|
131 |
find_program(pascal_ppc NAMES ppcppc) |
|
132 |
||
133 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" |
|
134 |
COMMAND "${pascal_x86}" |
|
135 |
ARGS ${pascal_compiler_flags} -ohwengine.386 |
|
2003 | 136 |
MAIN_DEPENDENCY ${hwengine_project} |
2521 | 137 |
DEPENDS ${engine_sources} |
2003 | 138 |
) |
2609 | 139 |
add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386") |
2003 | 140 |
|
2609 | 141 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
142 |
COMMAND "${pascal_ppc}" |
|
2003 | 143 |
ARGS ${pascal_compiler_flags} -ohwengine.ppc |
144 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 145 |
DEPENDS ${engine_sources} |
2003 | 146 |
) |
2609 | 147 |
add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc") |
148 |
||
149 |
IF(build_type MATCHES "universal64") |
|
150 |
find_program(pascal_x64 NAMES ppcx64) |
|
151 |
||
152 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.x64" |
|
153 |
COMMAND "${pascal_x64}" |
|
154 |
ARGS ${pascal_compiler_flags} -ohwengine.x64 |
|
155 |
MAIN_DEPENDENCY ${hwengine_project} |
|
156 |
DEPENDS ${engine_sources} |
|
157 |
) |
|
158 |
add_custom_target(hwengine.x64 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.x64") |
|
2003 | 159 |
|
2609 | 160 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
161 |
COMMAND "lipo" |
|
162 |
ARGS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" "${EXECUTABLE_OUTPUT_PATH}/hwengine.x64" -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
163 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" "${EXECUTABLE_OUTPUT_PATH}/hwengine.x64" |
|
164 |
) |
|
165 |
else() |
|
166 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
|
167 |
COMMAND "lipo" |
|
168 |
ARGS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
169 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
|
170 |
) |
|
171 |
endif() |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
172 |
ENDIF() |
2003 | 173 |
|
220 | 174 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 175 |
|
2015 | 176 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
177 |