author | smaxx |
Tue, 24 Aug 2010 01:19:17 +0200 | |
changeset 3762 | aef7d95dd159 |
parent 3697 | d5b30d6373fc |
child 3928 | 2560731c860d |
permissions | -rw-r--r-- |
2420 | 1 |
find_package(SDL) |
2 |
find_package(SDL_image) |
|
3 |
find_package(SDL_net) |
|
4 |
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
|
5 |
find_package(SDL_mixer) |
2924 | 6 |
find_package(Lua) |
2401 | 7 |
|
3067 | 8 |
configure_file(${hedgewars_SOURCE_DIR}/hedgewars/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc) |
9 |
||
2672 | 10 |
#find which version of SDL_image and SDL_mixer we have (for IMG_Init and Mix_Init) |
11 |
#if the headers are not installed, the newer apis won't be activated |
|
2673 | 12 |
find_file(sdlmixer_h SDL_mixer.h ${SDLMIXER_INCLUDE_DIR}) |
13 |
if(sdlmixer_h) |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
14 |
file(STRINGS ${sdlmixer_h} sdlmixer_version_tmp REGEX "SDL_MIXER_PATCHLEVEL[\t' ']+[0-9]+") |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
15 |
string(REGEX MATCH ".([0-9]+)" sdlmixer_version "${sdlmixer_version_tmp}") |
2672 | 16 |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
17 |
if(sdlmixer_version GREATER 9) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
18 |
message(STATUS "Enabling enhanced SDL_Mixer calls") |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
19 |
set(pascal_compiler_flags_cmn "-dSDL_MIXER_NEWER" ${pascal_compiler_flags_cmn}) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
20 |
endif() |
2673 | 21 |
endif() |
2672 | 22 |
|
2673 | 23 |
find_file(sdlimage_h SDL_image.h ${SDLIMAGE_INCLUDE_DIR}) |
24 |
if(sdlimage_h) |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
25 |
file(STRINGS ${sdlimage_h} sdlimage_version_tmp REGEX "SDL_IMAGE_PATCHLEVEL[\t' ']+[0-9]+") |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
26 |
string(REGEX MATCH ".([0-9]+)" sdlimage_version "${sdlimage_version_tmp}") |
2672 | 27 |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
28 |
if(sdlimage_version GREATER 7) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
29 |
message(STATUS "Enabling enhanced SDL_Image calls") |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
30 |
set(pascal_compiler_flags_cmn "-dSDL_IMAGE_NEWER" ${pascal_compiler_flags_cmn}) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
31 |
endif() |
2673 | 32 |
endif() |
2406 | 33 |
|
3697 | 34 |
#SOURCE AND PROGRAMS SECTION |
184 | 35 |
set(fpc_tryexe fpc) |
2326
0ddf641fddee
rename dpr -> pas, restores ammos on two columns, minor fixes to openalbridge
koda
parents:
2251
diff
changeset
|
36 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
184 | 37 |
|
2786 | 38 |
set(engine_sources |
220 | 39 |
${hwengine_project} |
40 |
SDLh.pas |
|
41 |
uAI.pas |
|
42 |
uAIActions.pas |
|
43 |
uAIAmmoTests.pas |
|
44 |
uAIMisc.pas |
|
288 | 45 |
uAmmos.pas |
942 | 46 |
uChat.pas |
220 | 47 |
uCollisions.pas |
48 |
uConsole.pas |
|
49 |
uConsts.pas |
|
357 | 50 |
uFloat.pas |
220 | 51 |
uGame.pas |
52 |
uGears.pas |
|
53 |
uIO.pas |
|
54 |
uKeys.pas |
|
55 |
uLand.pas |
|
56 |
uLandGraphics.pas |
|
57 |
uLandObjects.pas |
|
58 |
uLandTemplates.pas |
|
1806 | 59 |
uLandTexture.pas |
220 | 60 |
uLocale.pas |
61 |
uMisc.pas |
|
62 |
uRandom.pas |
|
2786 | 63 |
uScript.pas |
3528 | 64 |
adler32.pas |
220 | 65 |
uSound.pas |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
802
diff
changeset
|
66 |
uStats.pas |
220 | 67 |
uStore.pas |
68 |
uTeams.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 |
|
3468
c7b80bdbc384
* make portals delete each other only indirectly (by setting timer to 0)
sheepluva
parents:
3387
diff
changeset
|
73 |
VGSHandlers.inc |
3387
733f4001b8b9
Break out DrawHH/DrawGear to reduce scrolling in uGears.pas, add portal graphics
nemo
parents:
3067
diff
changeset
|
74 |
GearDrawing.inc |
220 | 75 |
HHHandlers.inc |
357 | 76 |
SinTable.inc |
3680 | 77 |
ArgParsers.inc |
220 | 78 |
options.inc |
2924 | 79 |
${CMAKE_CURRENT_BINARY_DIR}/config.inc |
220 | 80 |
) |
81 |
||
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
82 |
if(BUILD_ENGINE_LIBRARY) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
83 |
message(STATUS "Engine will be built as library (experimental)") |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
84 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwLibrary.pas) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
85 |
set(engine_sources ${hwengine_project} PascalExports.pas ${engine_sources}) |
3515 | 86 |
set(pascal_compiler_flags_cmn "-dHWLIBRARY" "-k-no_order_inits" "-fPIC" ${pascal_compiler_flags_cmn}) |
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
87 |
endif(BUILD_ENGINE_LIBRARY) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
88 |
|
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
89 |
|
184 | 90 |
find_program(fpc_executable ${fpc_tryexe}) |
91 |
||
2663 | 92 |
if(fpc_executable) |
184 | 93 |
exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output) |
2663 | 94 |
endif(fpc_executable) |
184 | 95 |
|
2663 | 96 |
set(noexecstack_flags "-k-z" "-knoexecstack") |
781 | 97 |
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.") |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
98 |
|
781 | 99 |
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH} |
2641 | 100 |
ARGS ${noexecstack_flags} checkstack.pas |
101 |
OUTPUT_VARIABLE noout |
|
102 |
RETURN_VALUE testnoexecstack |
|
103 |
) |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
104 |
|
2663 | 105 |
if(${testnoexecstack}) |
2641 | 106 |
set (noexecstack_flags "") |
2663 | 107 |
endif(${testnoexecstack}) |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
108 |
|
2406 | 109 |
|
2652 | 110 |
if(APPLE) |
111 |
string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}") |
|
112 |
string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}") |
|
113 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
|
114 |
||
115 |
if(powerpc_build) |
|
116 |
set(powerpc_build "powerpc") |
|
117 |
endif() |
|
118 |
endif(APPLE) |
|
119 |
||
2669 | 120 |
|
2406 | 121 |
#PASCAL DETECTION SECTION |
122 |
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}") |
|
123 |
||
2663 | 124 |
if(fpc_version) |
2406 | 125 |
string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}") |
126 |
string(REGEX REPLACE "[0-9]+\\.([0-9]+)\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}") |
|
127 |
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
|
128 |
message(STATUS "Freepascal version detected: ${fpc_vers_major}.${fpc_vers_minor}") |
2406 | 129 |
math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}") |
2652 | 130 |
|
2663 | 131 |
if(fpc_ver LESS "020200") |
2406 | 132 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0") |
2669 | 133 |
elseif(APPLE AND x86_64_build AND fpc_ver LESS "020400") |
2652 | 134 |
message(FATAL_ERROR "Minimum required version of FreePascal is 2.4.0 for building 64 bit applications!") |
2663 | 135 |
endif() |
2652 | 136 |
else() |
137 |
message(FATAL_ERROR "No Pascal compiler found!") |
|
2663 | 138 |
endif() |
2406 | 139 |
|
2652 | 140 |
set(pascal_compiler ${fpc_executable}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2601
diff
changeset
|
141 |
set(pascal_compiler_flags ${noexecstack_flags} ${pascal_compiler_flags_cmn} ${hwengine_project}) |
2406 | 142 |
|
143 |
||
144 |
#DEPENDECIES AND EXECUTABLES SECTION |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
145 |
IF(NOT APPLE OR BUILD_ENGINE_LIBRARY) |
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3468
diff
changeset
|
146 |
#here is the command for standard executables or for shared library |
2609 | 147 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" |
781 | 148 |
COMMAND "${pascal_compiler}" |
149 |
ARGS ${pascal_compiler_flags} |
|
150 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2521 | 151 |
DEPENDS ${engine_sources} |
781 | 152 |
) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
153 |
ELSE() |
2669 | 154 |
#let's build sdlmain, which is absent from the framework |
155 |
find_package(SDL REQUIRED) |
|
156 |
||
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
|
157 |
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) |
2669 | 158 |
include_directories(${SDL_INCLUDE_DIR}) |
159 |
||
160 |
add_library (SDLmain STATIC SDLMain.m) |
|
161 |
||
2809 | 162 |
|
163 |
#these are the dependencies for building a universal binary on Mac OS X |
|
2652 | 164 |
foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build}) |
2929 | 165 |
set(lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" ${lipo_args_list}) |
2652 | 166 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" |
167 |
COMMAND "${pascal_compiler}" |
|
168 |
ARGS ${pascal_compiler_flags} -ohwengine.${build_arch} -P${build_arch} |
|
169 |
MAIN_DEPENDENCY ${hwengine_project} |
|
2812 | 170 |
DEPENDS ${engine_sources} SDLmain lua |
2652 | 171 |
) |
172 |
add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
|
173 |
endforeach() |
|
2003 | 174 |
|
2641 | 175 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine" |
176 |
COMMAND "lipo" |
|
177 |
ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine |
|
178 |
DEPENDS ${lipo_args_list} |
|
179 |
) |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
180 |
ENDIF() |
2003 | 181 |
|
2641 | 182 |
|
220 | 183 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
184 | 184 |
|
2015 | 185 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
186 |