author | smxx |
Mon, 01 Mar 2010 19:57:09 +0000 | |
changeset 2907 | b29c1358498d |
parent 2822 | 0533562bc3a4 |
child 2924 | 908851e59958 |
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 |
|
2672 | 9 |
#find which version of SDL_image and SDL_mixer we have (for IMG_Init and Mix_Init) |
10 |
#if the headers are not installed, the newer apis won't be activated |
|
2673 | 11 |
find_file(sdlmixer_h SDL_mixer.h ${SDLMIXER_INCLUDE_DIR}) |
12 |
if(sdlmixer_h) |
|
2672 | 13 |
file(STRINGS ${sdlmixer_h} sdlmixer_version_tmp REGEX "SDL_MIXER_PATCHLEVEL[\t' ']+[0-9]+") |
14 |
string(REGEX MATCH ".([0-9]+)" sdlmixer_version "${sdlmixer_version_tmp}") |
|
15 |
||
16 |
if(sdlmixer_version GREATER 9) |
|
17 |
message(STATUS "Enabling enhanced SDL_Mixer calls") |
|
18 |
set(pascal_compiler_flags_cmn "-dSDL_MIXER_NEWER" ${pascal_compiler_flags_cmn}) |
|
19 |
endif() |
|
2673 | 20 |
endif() |
2672 | 21 |
|
2673 | 22 |
find_file(sdlimage_h SDL_image.h ${SDLIMAGE_INCLUDE_DIR}) |
23 |
if(sdlimage_h) |
|
2672 | 24 |
file(STRINGS ${sdlimage_h} sdlimage_version_tmp REGEX "SDL_IMAGE_PATCHLEVEL[\t' ']+[0-9]+") |
25 |
string(REGEX MATCH ".([0-9]+)" sdlimage_version "${sdlimage_version_tmp}") |
|
26 |
||
27 |
if(sdlimage_version GREATER 7) |
|
28 |
message(STATUS "Enabling enhanced SDL_Image calls") |
|
29 |
set(pascal_compiler_flags_cmn "-dSDL_IMAGE_NEWER" ${pascal_compiler_flags_cmn}) |
|
30 |
endif() |
|
2673 | 31 |
endif() |
2406 | 32 |
|
33 |
#SOURCE AND PROGRAMS SECTION |
|
184 | 34 |
set(fpc_tryexe fpc) |
2326
0ddf641fddee
rename dpr -> pas, restores ammos on two columns, minor fixes to openalbridge
koda
parents:
2251
diff
changeset
|
35 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
184 | 36 |
|
2786 | 37 |
set(engine_sources |
220 | 38 |
${hwengine_project} |
39 |
SDLh.pas |
|
40 |
uAI.pas |
|
41 |
uAIActions.pas |
|
42 |
uAIAmmoTests.pas |
|
43 |
uAIMisc.pas |
|
288 | 44 |
uAmmos.pas |
942 | 45 |
uChat.pas |
220 | 46 |
uCollisions.pas |
47 |
uConsole.pas |
|
48 |
uConsts.pas |
|
357 | 49 |
uFloat.pas |
220 | 50 |
uGame.pas |
51 |
uGears.pas |
|
52 |
uIO.pas |
|
53 |
uKeys.pas |
|
54 |
uLand.pas |
|
55 |
uLandGraphics.pas |
|
56 |
uLandObjects.pas |
|
57 |
uLandTemplates.pas |
|
1806 | 58 |
uLandTexture.pas |
220 | 59 |
uLocale.pas |
60 |
uMisc.pas |
|
61 |
uRandom.pas |
|
2786 | 62 |
uScript.pas |
368 | 63 |
uSHA.pas |
220 | 64 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
65 |
uStats.pas |
220 | 66 |
uStore.pas |
67 |
uTeams.pas |
|
593 | 68 |
uTriggers.pas |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
782
diff
changeset
|
69 |
uVisualGears.pas |
220 | 70 |
uWorld.pas |
71 |
CCHandlers.inc |
|
72 |
GSHandlers.inc |
|
73 |
HHHandlers.inc |
|
357 | 74 |
SinTable.inc |
220 | 75 |
options.inc |
781 | 76 |
${CMAKE_CURRENT_BINARY_DIR}/proto.inc |
220 | 77 |
) |
78 |
||
184 | 79 |
find_program(fpc_executable ${fpc_tryexe}) |
80 |
||
2663 | 81 |
if(fpc_executable) |
184 | 82 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
2663 | 83 |
endif(fpc_executable) |
184 | 84 |
|
2663 | 85 |
set(noexecstack_flags "-k-z" "-knoexecstack") |
781 | 86 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
87 |
|
781 | 88 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
2641 | 89 |
ARGS ${noexecstack_flags} checkstack.pas |
90 |
OUTPUT_VARIABLE noout |
|
91 |
RETURN_VALUE testnoexecstack |
|
92 |
) |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
93 |
|
2663 | 94 |
if(${testnoexecstack}) |
2641 | 95 |
set (noexecstack_flags "") |
2663 | 96 |
endif(${testnoexecstack}) |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
97 |
|
2406 | 98 |
|
2652 | 99 |
if(APPLE) |
100 |
string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}") |
|
101 |
string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}") |
|
102 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
|
103 |
||
104 |
if(powerpc_build) |
|
105 |
set(powerpc_build "powerpc") |
|
106 |
endif() |
|
107 |
endif(APPLE) |
|
108 |
||
2669 | 109 |
|
2406 | 110 |
#PASCAL DETECTION SECTION |
111 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
|
112 |
||
2663 | 113 |
if(fpc_version) |
2406 | 114 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
115 |
string(REGEX REPLACE "[0-9]+\\.([0-9]+)\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
116 |
string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" fpc_vers_patch "${fpc_version}") |
|
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2669
diff
changeset
|
117 |
message(STATUS "Freepascal version detected: ${fpc_vers_major}.${fpc_vers_minor}") |
2406 | 118 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
2652 | 119 |
|
2663 | 120 |
if(fpc_ver LESS "020200") |
2406 | 121 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0") |
2669 | 122 |
elseif(APPLE AND x86_64_build AND fpc_ver LESS "020400") |
2652 | 123 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.4.0 for building 64 bit applications!") |
2663 | 124 |
endif() |
2652 | 125 |
else() |
126 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
2663 | 127 |
endif() |
2406 | 128 |
|
2652 | 129 |
set(pascal_compiler ${fpc_executable}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
130 |
set(pascal_compiler_flags ${noexecstack_flags} ${pascal_compiler_flags_cmn} ${hwengine_project}) |
2406 | 131 |
|
132 |
||
133 |
#DEPENDECIES AND EXECUTABLES SECTION |
|
2629 | 134 |
IF(NOT APPLE) |
2003 | 135 |
#here is the standard command for any system |
2609 | 136 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 137 |
COMMAND "${pascal_compiler}" |
138 |
ARGS ${pascal_compiler_flags} |
|
139 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 140 |
DEPENDS ${engine_sources} |
781 | 141 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
142 |
ELSE() |
2669 | 143 |
#let's build sdlmain, which is absent from the framework |
144 |
find_package(SDL REQUIRED) |
|
145 |
||
146 |
set(CMAKE_OSX_ARCHITECTURES "x86_64;i386;ppc7400") |
|
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2669
diff
changeset
|
147 |
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) |
2669 | 148 |
include_directories(${SDL_INCLUDE_DIR}) |
149 |
||
150 |
add_library (SDLmain STATIC SDLMain.m) |
|
151 |
||
2809 | 152 |
|
153 |
#these are the dependencies for building a universal binary on Mac OS X |
|
2652 | 154 |
foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build}) |
2822 | 155 |
set(lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
2652 | 156 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" |
157 |
COMMAND "${pascal_compiler}" |
|
158 |
ARGS ${pascal_compiler_flags} -ohwengine.${build_arch} -P${build_arch} |
|
159 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2812 | 160 |
DEPENDS ${engine_sources} SDLmain lua |
2652 | 161 |
) |
162 |
add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
|
163 |
endforeach() |
|
2003 | 164 |
|
2641 | 165 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
166 |
COMMAND "lipo" |
|
167 |
ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
168 |
DEPENDS ${lipo_args_list} |
|
169 |
) |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
170 |
ENDIF() |
2003 | 171 |
|
2641 | 172 |
|
220 | 173 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 174 |
|
2015 | 175 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
176 |