author | nemo |
Sun, 28 Jun 2009 14:37:26 +0000 | |
changeset 2200 | 8192be6e3aef |
parent 2191 | 20c62f787a4d |
child 2203 | 6bd39d75e0dd |
permissions | -rw-r--r-- |
271 | 1 |
configure_file(${hedgewars_SOURCE_DIR}/hedgewars/proto.inc.in |
781 | 2 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc) |
271 | 3 |
|
184 | 4 |
set(fpc_tryexe fpc) |
782 | 5 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.dpr) |
184 | 6 |
|
220 | 7 |
set(engine_sources |
8 |
${hwengine_project} |
|
9 |
SDLh.pas |
|
10 |
uAI.pas |
|
11 |
uAIActions.pas |
|
12 |
uAIAmmoTests.pas |
|
13 |
uAIMisc.pas |
|
288 | 14 |
uAmmos.pas |
942 | 15 |
uChat.pas |
220 | 16 |
uCollisions.pas |
17 |
uConsole.pas |
|
18 |
uConsts.pas |
|
357 | 19 |
uFloat.pas |
220 | 20 |
uGame.pas |
21 |
uGears.pas |
|
22 |
uIO.pas |
|
23 |
uKeys.pas |
|
24 |
uLand.pas |
|
25 |
uLandGraphics.pas |
|
26 |
uLandObjects.pas |
|
27 |
uLandTemplates.pas |
|
1806 | 28 |
uLandTexture.pas |
220 | 29 |
uLocale.pas |
30 |
uMisc.pas |
|
31 |
uRandom.pas |
|
368 | 32 |
uSHA.pas |
220 | 33 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
34 |
uStats.pas |
220 | 35 |
uStore.pas |
36 |
uTeams.pas |
|
593 | 37 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
38 |
uVisualGears.pas |
220 | 39 |
uWorld.pas |
40 |
CCHandlers.inc |
|
41 |
GSHandlers.inc |
|
42 |
HHHandlers.inc |
|
357 | 43 |
SinTable.inc |
220 | 44 |
options.inc |
781 | 45 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 46 |
tunsetborder.inc |
47 |
) |
|
48 |
||
184 | 49 |
find_program(fpc_executable ${fpc_tryexe}) |
50 |
||
51 |
if (fpc_executable) |
|
52 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
|
53 |
endif (fpc_executable) |
|
54 |
||
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
55 |
set (noexecstack_flags "-k-z" "-knoexecstack") |
781 | 56 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
57 |
|
781 | 58 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
59 |
ARGS ${noexecstack_flags} checkstack.pas |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
60 |
OUTPUT_VARIABLE noout |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
61 |
RETURN_VALUE testnoexecstack) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
62 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
63 |
if (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
64 |
set (noexecstack_flags "") |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
65 |
endif (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
66 |
|
1997 | 67 |
IF(APPLE) |
2016 | 68 |
|
1997 | 69 |
FIND_PACKAGE(SDL) |
2016 | 70 |
|
1997 | 71 |
if (SDL_FOUND) |
2016 | 72 |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
73 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
74 |
include_directories(${SDL_INCLUDE_DIR}) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
75 |
link_libraries(${SDL_LIBRARY}) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
76 |
|
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
77 |
add_library (SDLmain STATIC SDLMain.m) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
78 |
set(engine_sources SDLmain ${engine_sources}) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
79 |
|
1997 | 80 |
else (SDL_FOUND) |
81 |
message(FATAL_ERROR "No SDL framework found!") |
|
82 |
endif (SDL_FOUND) |
|
83 |
||
84 |
ENDIF(APPLE) |
|
85 |
||
86 |
||
360 | 87 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
88 |
if (fpc_version) |
|
89 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
90 |
string(REGEX REPLACE "[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
91 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
92 |
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
|
93 |
if (fpc_ver LESS "020200") |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
94 |
message("Minimum required version of FreePascal is 2.2.0") |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
95 |
else (fpc_ver LESS "020200") |
360 | 96 |
set(pascal_compiler ${fpc_executable}) |
2191 | 97 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Fl../bin/" "-Fl../openalbridge/" "-Cs2000000" "-vwi" "-O2" ${hwengine_project}) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
98 |
endif (fpc_ver LESS "020200") |
360 | 99 |
endif (fpc_version) |
184 | 100 |
|
101 |
if (NOT pascal_compiler) |
|
102 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
103 |
endif (NOT pascal_compiler) |
|
104 |
||
2003 | 105 |
|
2015 | 106 |
IF(NOT APPLE OR NOT universal_build MATCHES "1") |
2003 | 107 |
#here is the standard command for any system |
220 | 108 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 109 |
COMMAND "${pascal_compiler}" |
110 |
ARGS ${pascal_compiler_flags} |
|
111 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
112 |
DEPENDS openalbridge ${engine_sources} |
781 | 113 |
) |
114 |
||
2015 | 115 |
ELSE(NOT APPLE OR NOT universal_build MATCHES "1") |
116 |
||
2003 | 117 |
#these are the two dependencies for building a universal binary on Mac OS X |
118 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386" |
|
119 |
COMMAND "ppc386" |
|
120 |
ARGS ${pascal_compiler_flags} -ohwengine.386 |
|
121 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
122 |
DEPENDS openalbridge ${engine_sources} |
2003 | 123 |
) |
124 |
add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386") |
|
125 |
||
126 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc" |
|
127 |
COMMAND "ppcppc" |
|
128 |
ARGS ${pascal_compiler_flags} -ohwengine.ppc |
|
129 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
130 |
DEPENDS openalbridge ${engine_sources} |
2003 | 131 |
) |
132 |
add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc") |
|
133 |
||
134 |
#this is the command that bundles the two executables into one |
|
135 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
|
136 |
COMMAND "lipo" |
|
137 |
ARGS ${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386 ${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX} |
|
2191 | 138 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc" |
2003 | 139 |
) |
2015 | 140 |
ENDIF(NOT APPLE OR NOT universal_build MATCHES "1") |
2003 | 141 |
|
142 |
||
220 | 143 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 144 |
|
2003 | 145 |
|
2015 | 146 |
if(APPLE) |
147 |
set (target_dir ".") |
|
148 |
else(APPLE) |
|
149 |
set (target_dir "bin") |
|
150 |
endif(APPLE) |
|
151 |
||
152 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
|
153 |