author | koda |
Wed, 23 Jun 2010 21:36:39 +0200 | |
changeset 2555 | 0862e88c12d2 |
parent 2523 | 7fc37a16f405 |
child 2586 | 204e6b2885bc |
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 |
||
95 |
#PASCAL FLAG SECTION |
|
2413
d921d13a8546
fix that nasty "Pascal Internal Error" when compiling
koda
parents:
2406
diff
changeset
|
96 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Fl../bin/" "-Cs2000000" "-vwi" ${hwengine_project}) |
2406 | 97 |
|
98 |
if(OPTIMIZATIONS) |
|
99 |
set(pascal_compiler_flags "-O2" "-Xs" "-Nu" ${pascal_compiler_flags}) |
|
100 |
if(APPLE AND NOT universal_build) |
|
2413
d921d13a8546
fix that nasty "Pascal Internal Error" when compiling
koda
parents:
2406
diff
changeset
|
101 |
set(pascal_compiler_flags "-fPIC" "-CfSSE2" ${pascal_compiler_flags}) #instruction set for ppc is 7400 |
2406 | 102 |
endif() |
103 |
else(OPTIMIZATIONS) |
|
2523 | 104 |
set(pascal_compiler_flags "-O-" "-gl" "-dDEBUGFILE" "-pg" "-va" ${pascal_compiler_flags}) |
2406 | 105 |
endif(OPTIMIZATIONS) |
106 |
||
107 |
if(LOWRES) |
|
108 |
set(pascal_compiler_flags "-dLOWRES" ${pascal_compiler_flags} ${hwengine_project}) |
|
109 |
endif(LOWRES) |
|
110 |
||
111 |
#special handling of MSVC compiler (no static linking) |
|
112 |
if(MSVC) |
|
113 |
set(pascal_compiler_flags "-dMSVC" ${pascal_compiler_flags}) |
|
114 |
endif(MSVC) |
|
115 |
||
116 |
||
117 |
#DEPENDECIES AND EXECUTABLES SECTION |
|
1997 | 118 |
IF(APPLE) |
2401 | 119 |
#let's build sdlmain, which is absent from the framework |
2420 | 120 |
find_package(SDL REQUIRED) |
121 |
||
2401 | 122 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
123 |
include_directories(${SDL_INCLUDE_DIR}) |
|
124 |
link_libraries(${SDL_LIBRARY}) |
|
2016 | 125 |
|
2401 | 126 |
add_library (SDLmain STATIC SDLMain.m) |
127 |
set(engine_sources SDLmain ${engine_sources}) |
|
1997 | 128 |
ENDIF(APPLE) |
129 |
||
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
2213
diff
changeset
|
130 |
IF(NOT APPLE OR NOT universal_build) |
2003 | 131 |
#here is the standard command for any system |
220 | 132 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 133 |
COMMAND "${pascal_compiler}" |
134 |
ARGS ${pascal_compiler_flags} |
|
135 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 136 |
DEPENDS ${engine_sources} |
781 | 137 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
138 |
ELSE() |
2003 | 139 |
#these are the two dependencies for building a universal binary on Mac OS X |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
140 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" |
2003 | 141 |
COMMAND "ppc386" |
2406 | 142 |
ARGS ${pascal_compiler_flags} -ohwengine.386 -CfSSE2 |
2003 | 143 |
MAIN_DEPENDENCY ${hwengine_project} |
2521 | 144 |
DEPENDS ${engine_sources} |
2003 | 145 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
146 |
add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386") |
2003 | 147 |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
148 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
2003 | 149 |
COMMAND "ppcppc" |
150 |
ARGS ${pascal_compiler_flags} -ohwengine.ppc |
|
151 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 152 |
DEPENDS ${engine_sources} |
2003 | 153 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
154 |
add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc") |
2003 | 155 |
|
156 |
#this is the command that bundles the two executables into one |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
157 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
2003 | 158 |
COMMAND "lipo" |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
159 |
ARGS ${EXECUTABLE_OUTPUT_PATH}/hwengine.386 ${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
160 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
2003 | 161 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
162 |
ENDIF() |
2003 | 163 |
|
164 |
||
220 | 165 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 166 |
|
2015 | 167 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
168 |