author | unc0rr |
Sun, 19 Apr 2009 13:22:17 +0000 | |
changeset 2007 | 159d14fe4e93 |
parent 2003 | 41b3d00949ca |
child 2015 | d2848d723690 |
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) |
68 |
FIND_PACKAGE(SDL) |
|
2003 | 69 |
if(CMAKE_OSX_ARCHITECTURES) |
70 |
set (arch_to_build "-arch i386 -arch ppc7400") |
|
71 |
else(CMAKE_OSX_ARCHITECTURES) |
|
72 |
set (arch_to build "") |
|
73 |
endif(CMAKE_OSX_ARCHITECTURES) |
|
1997 | 74 |
if (SDL_FOUND) |
75 |
exec_program(gcc |
|
2003 | 76 |
ARGS ${arch_to_build} -o ${EXECUTABLE_OUTPUT_PATH}/SDLMain.o -c ${hedgewars_SOURCE_DIR}/hedgewars/SDLMain.m -I ${SDL_INCLUDE_DIR}) |
1997 | 77 |
exec_program(${CMAKE_AR} |
78 |
ARGS -r ${EXECUTABLE_OUTPUT_PATH}/libSDLmain.a ${EXECUTABLE_OUTPUT_PATH}/SDLMain.o) |
|
79 |
exec_program(${CMAKE_RANLIB} |
|
80 |
ARGS ${EXECUTABLE_OUTPUT_PATH}/libSDLmain.a) |
|
81 |
else (SDL_FOUND) |
|
82 |
message(FATAL_ERROR "No SDL framework found!") |
|
83 |
endif (SDL_FOUND) |
|
84 |
||
85 |
ENDIF(APPLE) |
|
86 |
||
87 |
||
360 | 88 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
89 |
if (fpc_version) |
|
90 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
91 |
string(REGEX REPLACE "[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
92 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
93 |
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
|
94 |
if (fpc_ver LESS "020200") |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
95 |
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
|
96 |
else (fpc_ver LESS "020200") |
360 | 97 |
set(pascal_compiler ${fpc_executable}) |
1997 | 98 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Fl../bin" "-Cs2000000" "-vwi" "-O2" ${hwengine_project}) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
99 |
endif (fpc_ver LESS "020200") |
360 | 100 |
endif (fpc_version) |
184 | 101 |
|
102 |
if (NOT pascal_compiler) |
|
103 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
104 |
endif (NOT pascal_compiler) |
|
105 |
||
2003 | 106 |
|
107 |
IF(NOT CMAKE_OSX_ARCHITECTURES) |
|
108 |
#here is the standard command for any system |
|
220 | 109 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 110 |
COMMAND "${pascal_compiler}" |
111 |
ARGS ${pascal_compiler_flags} |
|
112 |
MAIN_DEPENDENCY ${hwengine_project} |
|
113 |
DEPENDS ${engine_sources} |
|
114 |
) |
|
115 |
||
2003 | 116 |
ELSE(NOT CMAKE_OSX_ARCHITECTURES) |
117 |
#these are the two dependencies for building a universal binary on Mac OS X |
|
118 |
||
119 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386" |
|
120 |
COMMAND "ppc386" |
|
121 |
ARGS ${pascal_compiler_flags} -ohwengine.386 |
|
122 |
MAIN_DEPENDENCY ${hwengine_project} |
|
123 |
DEPENDS ${engine_sources} |
|
124 |
) |
|
125 |
add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386") |
|
126 |
||
127 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc" |
|
128 |
COMMAND "ppcppc" |
|
129 |
ARGS ${pascal_compiler_flags} -ohwengine.ppc |
|
130 |
MAIN_DEPENDENCY ${hwengine_project} |
|
131 |
DEPENDS ${engine_sources} |
|
132 |
) |
|
133 |
add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc") |
|
134 |
||
135 |
#this is the command that bundles the two executables into one |
|
136 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
|
137 |
COMMAND "lipo" |
|
138 |
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} |
|
139 |
DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.386" "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}.ppc" |
|
140 |
) |
|
141 |
ENDIF(NOT CMAKE_OSX_ARCHITECTURES) |
|
142 |
||
143 |
||
220 | 144 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 145 |
|
220 | 146 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin) |
2003 | 147 |