author | koda |
Fri, 02 Oct 2009 18:44:37 +0000 | |
changeset 2401 | 2a694ea2a437 |
parent 2326 | 0ddf641fddee |
child 2404 | 8281eea32196 |
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 |
|
2401 | 3 |
find_package(SDL REQUIRED) |
4 |
find_package(SDL_IMAGE REQUIRED) |
|
5 |
find_package(SDL_NET REQUIRED) |
|
6 |
find_package(SDL_TTF REQUIRED) |
|
7 |
||
184 | 8 |
set(fpc_tryexe fpc) |
2326
0ddf641fddee
rename dpr -> pas, restores ammos on two columns, minor fixes to openalbridge
koda
parents:
2251
diff
changeset
|
9 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
184 | 10 |
|
220 | 11 |
set(engine_sources |
12 |
${hwengine_project} |
|
13 |
SDLh.pas |
|
14 |
uAI.pas |
|
15 |
uAIActions.pas |
|
16 |
uAIAmmoTests.pas |
|
17 |
uAIMisc.pas |
|
288 | 18 |
uAmmos.pas |
942 | 19 |
uChat.pas |
220 | 20 |
uCollisions.pas |
21 |
uConsole.pas |
|
22 |
uConsts.pas |
|
357 | 23 |
uFloat.pas |
220 | 24 |
uGame.pas |
25 |
uGears.pas |
|
26 |
uIO.pas |
|
27 |
uKeys.pas |
|
28 |
uLand.pas |
|
29 |
uLandGraphics.pas |
|
30 |
uLandObjects.pas |
|
31 |
uLandTemplates.pas |
|
1806 | 32 |
uLandTexture.pas |
220 | 33 |
uLocale.pas |
34 |
uMisc.pas |
|
35 |
uRandom.pas |
|
368 | 36 |
uSHA.pas |
220 | 37 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
38 |
uStats.pas |
220 | 39 |
uStore.pas |
40 |
uTeams.pas |
|
593 | 41 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
42 |
uVisualGears.pas |
220 | 43 |
uWorld.pas |
44 |
CCHandlers.inc |
|
45 |
GSHandlers.inc |
|
46 |
HHHandlers.inc |
|
357 | 47 |
SinTable.inc |
220 | 48 |
options.inc |
781 | 49 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 50 |
tunsetborder.inc |
51 |
) |
|
52 |
||
184 | 53 |
find_program(fpc_executable ${fpc_tryexe}) |
54 |
||
55 |
if (fpc_executable) |
|
56 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
|
57 |
endif (fpc_executable) |
|
58 |
||
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
59 |
set (noexecstack_flags "-k-z" "-knoexecstack") |
781 | 60 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
61 |
|
781 | 62 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
63 |
ARGS ${noexecstack_flags} checkstack.pas |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
64 |
OUTPUT_VARIABLE noout |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
65 |
RETURN_VALUE testnoexecstack) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
66 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
67 |
if (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
68 |
set (noexecstack_flags "") |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
69 |
endif (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
70 |
|
1997 | 71 |
IF(APPLE) |
2401 | 72 |
#let's build sdlmain, which is absent from the framework |
73 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
|
74 |
include_directories(${SDL_INCLUDE_DIR}) |
|
75 |
link_libraries(${SDL_LIBRARY}) |
|
2016 | 76 |
|
2401 | 77 |
add_library (SDLmain STATIC SDLMain.m) |
78 |
set(engine_sources SDLmain ${engine_sources}) |
|
1997 | 79 |
ENDIF(APPLE) |
80 |
||
360 | 81 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
2401 | 82 |
|
360 | 83 |
if (fpc_version) |
84 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
2401 | 85 |
string(REGEX REPLACE "[0-9]+\\.([0-9]+)\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
360 | 86 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
87 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
88 |
if (fpc_ver LESS "020200") |
2401 | 89 |
message(STATUS "Minimum required version of FreePascal is 2.2.0") |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
90 |
else (fpc_ver LESS "020200") |
360 | 91 |
set(pascal_compiler ${fpc_executable}) |
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2239
diff
changeset
|
92 |
if(NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE MATCHES "Release") |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
93 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Fl../bin/" "-Cs2000000" "-vwi" "-O2" "-Xs" ${hwengine_project}) |
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
94 |
else() |
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2239
diff
changeset
|
95 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Fl../bin/" "-Cs2000000" "-vwi" "-O-" "-gl" "-dDEBUGFILE" ${hwengine_project}) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
96 |
endif() |
2251
bf0b59d3536a
fix a binding that was preveting to display anything else besides hogs on iphone
koda
parents:
2241
diff
changeset
|
97 |
if(LOWRES) |
bf0b59d3536a
fix a binding that was preveting to display anything else besides hogs on iphone
koda
parents:
2241
diff
changeset
|
98 |
set(pascal_compiler_flags "-dLOWRES" ${pascal_compiler_flags} ${hwengine_project}) |
bf0b59d3536a
fix a binding that was preveting to display anything else besides hogs on iphone
koda
parents:
2241
diff
changeset
|
99 |
endif(LOWRES) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
100 |
endif (fpc_ver LESS "020200") |
360 | 101 |
endif (fpc_version) |
184 | 102 |
|
103 |
if (NOT pascal_compiler) |
|
104 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
105 |
endif (NOT pascal_compiler) |
|
106 |
||
2213 | 107 |
#special handling of MSVC compiler (no static linking) |
108 |
if(MSVC) |
|
109 |
set(pascal_compiler_flags "-dMSVC" ${pascal_compiler_flags}) |
|
110 |
endif(MSVC) |
|
2003 | 111 |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
2213
diff
changeset
|
112 |
IF(NOT APPLE OR NOT universal_build) |
2003 | 113 |
#here is the standard command for any system |
220 | 114 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 115 |
COMMAND "${pascal_compiler}" |
116 |
ARGS ${pascal_compiler_flags} |
|
117 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
118 |
DEPENDS openalbridge ${engine_sources} |
781 | 119 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
120 |
ELSE() |
2003 | 121 |
#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
|
122 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" |
2003 | 123 |
COMMAND "ppc386" |
124 |
ARGS ${pascal_compiler_flags} -ohwengine.386 |
|
125 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
126 |
DEPENDS openalbridge ${engine_sources} |
2003 | 127 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
128 |
add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386") |
2003 | 129 |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
130 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
2003 | 131 |
COMMAND "ppcppc" |
132 |
ARGS ${pascal_compiler_flags} -ohwengine.ppc |
|
133 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
134 |
DEPENDS openalbridge ${engine_sources} |
2003 | 135 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
136 |
add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc") |
2003 | 137 |
|
138 |
#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
|
139 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
2003 | 140 |
COMMAND "lipo" |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
141 |
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
|
142 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc" |
2003 | 143 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
144 |
ENDIF() |
2003 | 145 |
|
146 |
||
220 | 147 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 148 |
|
2015 | 149 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
150 |