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