author | koda |
Sun, 03 Jan 2010 15:40:41 +0000 | |
changeset 2671 | 7e0f88013fe8 |
parent 2669 | 4eec706e86b0 |
child 2672 | 0f1403bf267a |
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 |
|
2663 | 14 |
set( engine_sources |
220 | 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 |
) |
54 |
||
184 | 55 |
find_program(fpc_executable ${fpc_tryexe}) |
56 |
||
2663 | 57 |
if(fpc_executable) |
184 | 58 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
2663 | 59 |
endif(fpc_executable) |
184 | 60 |
|
2663 | 61 |
set(noexecstack_flags "-k-z" "-knoexecstack") |
781 | 62 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
63 |
|
781 | 64 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
2641 | 65 |
ARGS ${noexecstack_flags} checkstack.pas |
66 |
OUTPUT_VARIABLE noout |
|
67 |
RETURN_VALUE testnoexecstack |
|
68 |
) |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
69 |
|
2663 | 70 |
if(${testnoexecstack}) |
2641 | 71 |
set (noexecstack_flags "") |
2663 | 72 |
endif(${testnoexecstack}) |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
73 |
|
2406 | 74 |
|
2652 | 75 |
if(APPLE) |
76 |
string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}") |
|
77 |
string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}") |
|
78 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
|
79 |
||
80 |
if(powerpc_build) |
|
81 |
set(powerpc_build "powerpc") |
|
82 |
endif() |
|
83 |
endif(APPLE) |
|
84 |
||
2669 | 85 |
|
2406 | 86 |
#PASCAL DETECTION SECTION |
87 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
|
88 |
||
2663 | 89 |
if(fpc_version) |
2406 | 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}") |
|
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
|
93 |
message(STATUS "Freepascal version detected: ${fpc_vers_major}.${fpc_vers_minor}") |
2406 | 94 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
2652 | 95 |
|
2663 | 96 |
if(fpc_ver LESS "020200") |
2406 | 97 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0") |
2669 | 98 |
elseif(APPLE AND x86_64_build AND fpc_ver LESS "020400") |
2652 | 99 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.4.0 for building 64 bit applications!") |
2663 | 100 |
endif() |
2652 | 101 |
else() |
102 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
2663 | 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 |
|
2629 | 110 |
IF(NOT APPLE) |
2003 | 111 |
#here is the standard command for any system |
2609 | 112 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 113 |
COMMAND "${pascal_compiler}" |
114 |
ARGS ${pascal_compiler_flags} |
|
115 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 116 |
DEPENDS ${engine_sources} |
781 | 117 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
118 |
ELSE() |
2669 | 119 |
#let's build sdlmain, which is absent from the framework |
120 |
find_package(SDL REQUIRED) |
|
121 |
||
122 |
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
|
123 |
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) |
2669 | 124 |
include_directories(${SDL_INCLUDE_DIR}) |
125 |
||
126 |
add_library (SDLmain STATIC SDLMain.m) |
|
127 |
# set_target_properties(SDLmain PROPERTIES COMPILE_FLAGS "-mmacosx-version-min=${minimum_macosx} --sysroot=${CMAKE_OSX_SYSROOT} ") |
|
128 |
||
2609 | 129 |
#these are the dependencies for building a universal binary on Mac OS X |
2652 | 130 |
foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build}) |
131 |
set(lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" ${lipo_args_list}) |
|
132 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" |
|
133 |
COMMAND "${pascal_compiler}" |
|
134 |
ARGS ${pascal_compiler_flags} -ohwengine.${build_arch} -P${build_arch} |
|
135 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2663
diff
changeset
|
136 |
DEPENDS ${engine_sources} SDLmain |
2652 | 137 |
) |
138 |
add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
|
139 |
endforeach() |
|
2003 | 140 |
|
2641 | 141 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
142 |
COMMAND "lipo" |
|
143 |
ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
144 |
DEPENDS ${lipo_args_list} |
|
145 |
) |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
146 |
ENDIF() |
2003 | 147 |
|
2641 | 148 |
|
220 | 149 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 150 |
|
2015 | 151 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
152 |