author | unc0rr |
Mon, 17 Nov 2008 18:24:34 +0000 | |
changeset 1499 | 870305c40b81 |
parent 1415 | 6fbfee0e113a |
child 1744 | 19a0016af2a2 |
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 |
781 | 44 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 45 |
tunsetborder.inc |
46 |
) |
|
47 |
||
184 | 48 |
find_program(fpc_executable ${fpc_tryexe}) |
49 |
||
50 |
if (fpc_executable) |
|
51 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
|
52 |
endif (fpc_executable) |
|
53 |
||
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
54 |
set (noexecstack_flags "-k-z" "-knoexecstack") |
781 | 55 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
56 |
|
781 | 57 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
58 |
ARGS ${noexecstack_flags} checkstack.pas |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
59 |
OUTPUT_VARIABLE noout |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
60 |
RETURN_VALUE testnoexecstack) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
61 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
62 |
if (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
63 |
set (noexecstack_flags "") |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
64 |
endif (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
65 |
|
360 | 66 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
67 |
if (fpc_version) |
|
68 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
|
69 |
string(REGEX REPLACE "[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
70 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
71 |
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
|
72 |
if (fpc_ver LESS "020200") |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
73 |
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
|
74 |
else (fpc_ver LESS "020200") |
360 | 75 |
set(pascal_compiler ${fpc_executable}) |
534 | 76 |
set(pascal_compiler_flags ${noexecstack_flags} "-B" "-FE../bin" "-Cs2000000" "-vwi" "-O2" ${hwengine_project}) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1097
diff
changeset
|
77 |
endif (fpc_ver LESS "020200") |
360 | 78 |
endif (fpc_version) |
184 | 79 |
|
80 |
if (NOT pascal_compiler) |
|
81 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
82 |
endif (NOT pascal_compiler) |
|
83 |
||
220 | 84 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 85 |
COMMAND "${pascal_compiler}" |
86 |
ARGS ${pascal_compiler_flags} |
|
87 |
MAIN_DEPENDENCY ${hwengine_project} |
|
88 |
DEPENDS ${engine_sources} |
|
89 |
) |
|
90 |
||
220 | 91 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 92 |
|
220 | 93 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin) |