author | unc0rr |
Sun, 06 Jul 2008 22:55:24 +0000 | |
changeset 1060 | 4a655f344900 |
parent 942 | b41af014d85e |
child 1097 | 06b15817b8a0 |
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 |
|
28 |
uLocale.pas |
|
29 |
uMisc.pas |
|
30 |
uRandom.pas |
|
368 | 31 |
uSHA.pas |
220 | 32 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
33 |
uStats.pas |
220 | 34 |
uStore.pas |
35 |
uTeams.pas |
|
593 | 36 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
37 |
uVisualGears.pas |
220 | 38 |
uWorld.pas |
39 |
CCHandlers.inc |
|
40 |
GSHandlers.inc |
|
41 |
HHHandlers.inc |
|
357 | 42 |
SinTable.inc |
220 | 43 |
options.inc |
782 | 44 |
${CMAKE_CURRENT_BINARY_DIR}/playlist.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 |
|
360 | 67 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
68 |
if (fpc_version) |
|
69 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
70 |
string(REGEX REPLACE "[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
71 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
72 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
|
73 |
if (fpc_ver LESS "010904") |
|
74 |
message("Minimum required version of FreePascal is 1.9.4") |
|
75 |
else (fpc_ver LESS "010904") |
|
76 |
set(pascal_compiler ${fpc_executable}) |
|
534 | 77 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Cs2000000" "-vwi" "-O2" ${hwengine_project}) |
360 | 78 |
endif (fpc_ver LESS "010904") |
79 |
endif (fpc_version) |
|
184 | 80 |
|
81 |
if (NOT pascal_compiler) |
|
82 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
83 |
endif (NOT pascal_compiler) |
|
84 |
||
220 | 85 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 86 |
COMMAND "${pascal_compiler}" |
87 |
ARGS ${pascal_compiler_flags} |
|
88 |
MAIN_DEPENDENCY ${hwengine_project} |
|
89 |
DEPENDS ${engine_sources} |
|
90 |
) |
|
91 |
||
220 | 92 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 93 |
|
220 | 94 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin) |