hedgewars/CMakeLists.txt
author convert-repo
Wed, 16 Jun 2010 04:10:50 +0000
changeset 3504 6a28efdec1f5
parent 3495 a6b4f351d400
child 3510 23145a950eae
permissions -rw-r--r--
update tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2420
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     1
find_package(SDL)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     2
find_package(SDL_image)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     3
find_package(SDL_net)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     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
908851e59958 Engine:
smxx
parents: 2822
diff changeset
     6
find_package(Lua)
2401
2a694ea2a437 fixes & co.
koda
parents: 2326
diff changeset
     7
3067
smxx
parents: 2990
diff changeset
     8
configure_file(${hedgewars_SOURCE_DIR}/hedgewars/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc)
smxx
parents: 2990
diff changeset
     9
2672
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    10
#find which version of SDL_image and SDL_mixer we have (for IMG_Init and Mix_Init)
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    11
#if the headers are not installed, the newer apis won't be activated
2673
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    12
find_file(sdlmixer_h SDL_mixer.h ${SDLMIXER_INCLUDE_DIR})
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    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
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    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
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    21
endif()
2672
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    22
2673
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    23
find_file(sdlimage_h SDL_image.h ${SDLIMAGE_INCLUDE_DIR})
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    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
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    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
2c847bcc951d rewritten find_file part
koda
parents: 2672
diff changeset
    32
endif()
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
    33
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
    34
#SOURCE AND PROGRAMS SECTION 
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    37
2786
85f6425a4d74 Engine:
smxx
parents: 2673
diff changeset
    38
set(engine_sources
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    39
	${hwengine_project}
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    40
	SDLh.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    41
	uAI.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    42
	uAIActions.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    43
	uAIAmmoTests.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    44
	uAIMisc.pas
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 276
diff changeset
    45
	uAmmos.pas
942
b41af014d85e Stub for chat implementation
unc0rr
parents: 814
diff changeset
    46
	uChat.pas
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    47
	uCollisions.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    48
	uConsole.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    49
	uConsts.pas
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 351
diff changeset
    50
	uFloat.pas
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    51
	uGame.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    52
	uGears.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    53
	uIO.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    54
	uKeys.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    55
	uLand.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    56
	uLandGraphics.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    57
	uLandObjects.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    58
	uLandTemplates.pas
1806
3c4f0886c123 More reorganization
unc0rr
parents: 1744
diff changeset
    59
	uLandTexture.pas
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    60
	uLocale.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    61
	uMisc.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    62
	uRandom.pas
2786
85f6425a4d74 Engine:
smxx
parents: 2673
diff changeset
    63
	uScript.pas
368
fe71e55d2d7b Make SHA really work
unc0rr
parents: 360
diff changeset
    64
	uSHA.pas
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    65
	uSound.pas
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents: 802
diff changeset
    66
	uStats.pas
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    67
	uStore.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    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
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    70
	uWorld.pas
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    71
	CCHandlers.inc
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    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
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    75
	HHHandlers.inc
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 351
diff changeset
    76
	SinTable.inc
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    77
	options.inc
2924
908851e59958 Engine:
smxx
parents: 2822
diff changeset
    78
	${CMAKE_CURRENT_BINARY_DIR}/config.inc
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    79
	)
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
    80
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
    81
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
    82
	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
    83
	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
    84
	set(engine_sources ${hwengine_project} PascalExports.pas ${engine_sources})
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(pascal_compiler_flags_cmn "-dHWLIBRARY" "-k-no_order_inits" ${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
    86
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
    87
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
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    89
find_program(fpc_executable ${fpc_tryexe})
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    90
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
    91
if(fpc_executable)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    92
	 exec_program(${fpc_executable} ARGS "-h" OUTPUT_VARIABLE fpc_output)
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
    93
endif(fpc_executable)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    94
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
    95
set(noexecstack_flags "-k-z" "-knoexecstack")
781
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
    96
file(WRITE ${EXECUTABLE_OUTPUT_PATH}/checkstack.pas "begin end.")
476
a4e975f70b60 check for noexecstack linker compatibility (MacOS linker)
displacer
parents: 433
diff changeset
    97
781
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
    98
exec_program(${fpc_executable} ${EXECUTABLE_OUTPUT_PATH}
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    99
	ARGS ${noexecstack_flags} checkstack.pas
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   100
	OUTPUT_VARIABLE noout
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   101
	RETURN_VALUE testnoexecstack
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   102
	)
476
a4e975f70b60 check for noexecstack linker compatibility (MacOS linker)
displacer
parents: 433
diff changeset
   103
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   104
if(${testnoexecstack})
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   105
	set (noexecstack_flags "")
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   106
endif(${testnoexecstack})
476
a4e975f70b60 check for noexecstack linker compatibility (MacOS linker)
displacer
parents: 433
diff changeset
   107
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   108
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   109
if(APPLE)
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   110
	string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}")
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   111
	string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}")
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   112
	string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}")
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   113
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   114
	if(powerpc_build)
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   115
		set(powerpc_build "powerpc")
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   116
	endif()
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   117
endif(APPLE)
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   118
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   119
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   120
#PASCAL DETECTION SECTION
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   121
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" fpc_version "${fpc_output}")
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   122
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   123
if(fpc_version)
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   124
	string(REGEX REPLACE "([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" fpc_vers_major "${fpc_version}")
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   125
	string(REGEX REPLACE "[0-9]+\\.([0-9]+)\\.[0-9]+" "\\1" fpc_vers_minor "${fpc_version}")
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   126
	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
   127
	message(STATUS "Freepascal version detected: ${fpc_vers_major}.${fpc_vers_minor}")
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   128
	math(EXPR fpc_ver "${fpc_vers_major}*10000 + ${fpc_vers_minor}*100 + ${fpc_vers_patch}")
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   129
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   130
	if(fpc_ver LESS "020200")
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   131
		message(FATAL_ERROR "Minimum required version of FreePascal is 2.2.0")
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   132
	elseif(APPLE AND x86_64_build AND fpc_ver LESS "020400")
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   133
		message(FATAL_ERROR "Minimum required version of FreePascal is 2.4.0 for building 64 bit applications!")
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   134
	endif()
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   135
else()
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   136
	message(FATAL_ERROR "No Pascal compiler found!")
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2652
diff changeset
   137
endif()
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   138
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   139
set(pascal_compiler ${fpc_executable})
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2601
diff changeset
   140
set(pascal_compiler_flags ${noexecstack_flags} ${pascal_compiler_flags_cmn} ${hwengine_project})
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   141
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   142
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
   143
#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
   144
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
   145
	#here is the command for standard executables or for shared library
2609
b67624c7d61e add a x86_64 mac target
koda
parents: 2606
diff changeset
   146
	add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}"
781
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
   147
		COMMAND "${pascal_compiler}"
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
   148
		ARGS ${pascal_compiler_flags}
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
   149
		MAIN_DEPENDENCY ${hwengine_project}
2521
fc8d26d14ed0 Fix build
unc0rr
parents: 2515
diff changeset
   150
		DEPENDS ${engine_sources}
781
4101f0f1c0b9 First steps to support out-of-source build
unc0rr
parents: 593
diff changeset
   151
		)
2203
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   152
ELSE()
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   153
	#let's build sdlmain, which is absent from the framework
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   154
	find_package(SDL REQUIRED)
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   155
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
   156
	set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   157
	include_directories(${SDL_INCLUDE_DIR})
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   158
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   159
	add_library (SDLmain STATIC SDLMain.m)
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
   160
2809
b8956af350c1 mac build supports lua
koda
parents: 2804
diff changeset
   161
b8956af350c1 mac build supports lua
koda
parents: 2804
diff changeset
   162
	#these are the dependencies for building a universal binary on Mac OS X
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   163
	foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build})
2929
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2924
diff changeset
   164
		set(lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" ${lipo_args_list})
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   165
		add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}"
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   166
			COMMAND "${pascal_compiler}"
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   167
			ARGS ${pascal_compiler_flags} -ohwengine.${build_arch} -P${build_arch}
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   168
			MAIN_DEPENDENCY ${hwengine_project}
2812
0a24853de796 add liblua to sources for macosx
koda
parents: 2809
diff changeset
   169
			DEPENDS ${engine_sources} SDLmain lua
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   170
			)
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   171
		add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}")
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   172
	endforeach()
2003
41b3d00949ca Patch by koda:
unc0rr
parents: 1997
diff changeset
   173
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   174
	add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine"
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   175
		COMMAND "lipo"
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   176
		ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/hwengine
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   177
		DEPENDS ${lipo_args_list}
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   178
		)
2203
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   179
ENDIF()
2003
41b3d00949ca Patch by koda:
unc0rr
parents: 1997
diff changeset
   180
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   181
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
   182
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
   183
2015
d2848d723690 koda's patch
unc0rr
parents: 2003
diff changeset
   184
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir})
d2848d723690 koda's patch
unc0rr
parents: 2003
diff changeset
   185