author | nemo |
Wed, 09 Dec 2009 17:35:42 +0000 | |
changeset 2659 | 947fa21d5cd8 |
parent 2652 | 67d0344aea9f |
child 2663 | d53918cd22bb |
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 |
|
2420 | 3 |
find_package(SDL) |
4 |
find_package(SDL_image) |
|
5 |
find_package(SDL_net) |
|
6 |
find_package(SDL_ttf) |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
7 |
find_package(SDL_mixer) |
2401 | 8 |
|
2406 | 9 |
|
10 |
#SOURCE AND PROGRAMS SECTION |
|
184 | 11 |
set(fpc_tryexe fpc) |
2326
0ddf641fddee
rename dpr -> pas, restores ammos on two columns, minor fixes to openalbridge
koda
parents:
2251
diff
changeset
|
12 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
184 | 13 |
|
220 | 14 |
set(engine_sources |
15 |
${hwengine_project} |
|
16 |
SDLh.pas |
|
17 |
uAI.pas |
|
18 |
uAIActions.pas |
|
19 |
uAIAmmoTests.pas |
|
20 |
uAIMisc.pas |
|
288 | 21 |
uAmmos.pas |
942 | 22 |
uChat.pas |
220 | 23 |
uCollisions.pas |
24 |
uConsole.pas |
|
25 |
uConsts.pas |
|
357 | 26 |
uFloat.pas |
220 | 27 |
uGame.pas |
28 |
uGears.pas |
|
29 |
uIO.pas |
|
30 |
uKeys.pas |
|
31 |
uLand.pas |
|
32 |
uLandGraphics.pas |
|
33 |
uLandObjects.pas |
|
34 |
uLandTemplates.pas |
|
1806 | 35 |
uLandTexture.pas |
220 | 36 |
uLocale.pas |
37 |
uMisc.pas |
|
38 |
uRandom.pas |
|
368 | 39 |
uSHA.pas |
220 | 40 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
41 |
uStats.pas |
220 | 42 |
uStore.pas |
43 |
uTeams.pas |
|
593 | 44 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
45 |
uVisualGears.pas |
220 | 46 |
uWorld.pas |
47 |
CCHandlers.inc |
|
48 |
GSHandlers.inc |
|
49 |
HHHandlers.inc |
|
357 | 50 |
SinTable.inc |
220 | 51 |
options.inc |
781 | 52 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 53 |
tunsetborder.inc |
54 |
) |
|
55 |
||
184 | 56 |
find_program(fpc_executable ${fpc_tryexe}) |
57 |
||
58 |
if (fpc_executable) |
|
59 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
|
60 |
endif (fpc_executable) |
|
61 |
||
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
62 |
set (noexecstack_flags "-k-z" "-knoexecstack") |
781 | 63 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
64 |
|
781 | 65 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
2641 | 66 |
ARGS ${noexecstack_flags} checkstack.pas |
67 |
OUTPUT_VARIABLE noout |
|
68 |
RETURN_VALUE testnoexecstack |
|
69 |
) |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
70 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
71 |
if (${testnoexecstack}) |
2641 | 72 |
set (noexecstack_flags "") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
73 |
endif (${testnoexecstack}) |
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
74 |
|
2406 | 75 |
|
2652 | 76 |
if(APPLE) |
77 |
string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}") |
|
78 |
string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}") |
|
79 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
|
80 |
||
81 |
if(powerpc_build) |
|
82 |
set(powerpc_build "powerpc") |
|
83 |
endif() |
|
84 |
endif(APPLE) |
|
85 |
||
2406 | 86 |
#PASCAL DETECTION SECTION |
87 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
|
88 |
||
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}") |
|
2641 | 93 |
message(STATUS "Freepascal version detected: ${fpc_vers_major}.${fpc_vers_minor}.${fpc_vers_patch}") |
2406 | 94 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
2652 | 95 |
|
2406 | 96 |
if (fpc_ver LESS "020200") |
97 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0") |
|
2652 | 98 |
elseif (APPLE AND i386_build AND fpc_ver LESS "020400") |
99 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.4.0 for building 64 bit applications!") |
|
2406 | 100 |
endif () |
2652 | 101 |
else() |
102 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
103 |
endif () |
|
2406 | 104 |
|
2652 | 105 |
set(pascal_compiler ${fpc_executable}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
106 |
set(pascal_compiler_flags ${noexecstack_flags} ${pascal_compiler_flags_cmn} ${hwengine_project}) |
2406 | 107 |
|
108 |
||
109 |
#DEPENDECIES AND EXECUTABLES SECTION |
|
1997 | 110 |
IF(APPLE) |
2401 | 111 |
#let's build sdlmain, which is absent from the framework |
2420 | 112 |
find_package(SDL REQUIRED) |
113 |
||
2401 | 114 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
115 |
include_directories(${SDL_INCLUDE_DIR}) |
|
116 |
link_libraries(${SDL_LIBRARY}) |
|
2016 | 117 |
|
2401 | 118 |
add_library (SDLmain STATIC SDLMain.m) |
1997 | 119 |
ENDIF(APPLE) |
120 |
||
2629 | 121 |
IF(NOT APPLE) |
2003 | 122 |
#here is the standard command for any system |
2609 | 123 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 124 |
COMMAND "${pascal_compiler}" |
125 |
ARGS ${pascal_compiler_flags} |
|
126 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 127 |
DEPENDS ${engine_sources} |
781 | 128 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
129 |
ELSE() |
2609 | 130 |
#these are the dependencies for building a universal binary on Mac OS X |
2652 | 131 |
foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build}) |
132 |
set(lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" ${lipo_args_list}) |
|
133 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" |
|
134 |
COMMAND "${pascal_compiler}" |
|
135 |
ARGS ${pascal_compiler_flags} -ohwengine.${build_arch} -P${build_arch} |
|
136 |
MAIN_DEPENDENCY ${hwengine_project} |
|
137 |
DEPENDS ${engine_sources} |
|
138 |
) |
|
139 |
add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
|
140 |
endforeach() |
|
2003 | 141 |
|
2641 | 142 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
143 |
COMMAND "lipo" |
|
144 |
ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
145 |
DEPENDS ${lipo_args_list} |
|
146 |
) |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
147 |
ENDIF() |
2003 | 148 |
|
2641 | 149 |
|
220 | 150 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 151 |
|
2015 | 152 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
153 |