CMakeLists.txt
author sheepluva
Sun, 06 Feb 2011 11:39:11 +0100
changeset 4929 3dca560e6510
parent 4904 0eab727d4717
child 5053 a767954cfa03
permissions -rw-r--r--
I need this export in order to not have the wrapper.c fail to find Game() on linux From this point on compilation and usage of library should work on linux, at least does for me :P
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
     1
project(hedgewars)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
     2
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1459
diff changeset
     3
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
     4
cmake_policy(SET CMP0003 NEW)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
     5
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
     6
IF(POLICY CMP0012)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
     7
	cmake_policy(SET CMP0012 NEW)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
     8
ENDIF()
1107
ee873ada9e86 Supress CMake warning
unc0rr
parents: 1074
diff changeset
     9
4252
13ec087713dd raised version number
koda
parents: 4098
diff changeset
    10
#detect Mercurial revision (if present)
4731
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
    11
set(version_suffix "-dev") #UNSET THIS VARIABLE AT RELEASE TIME
4903
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    12
set(HGCHANGED "")
3074
271cfcb2bcda Frontend:
smxx
parents: 3055
diff changeset
    13
IF(version_suffix MATCHES "-dev")
271cfcb2bcda Frontend:
smxx
parents: 3055
diff changeset
    14
	set(HW_DEV true)
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    15
	IF (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.hg)
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
    16
		FIND_PROGRAM(HGCOMMAND hg)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
    17
		IF(HGCOMMAND)
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    18
			exec_program(${HGCOMMAND}
3520
c3dcb80bdb1d add local rev number/rev count to dev version suffix
sheepluva
parents: 3515
diff changeset
    19
				     ARGS identify -in ${CMAKE_CURRENT_SOURCE_DIR}
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
    20
				     OUTPUT_VARIABLE version_suffix
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
    21
				     )
4903
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    22
			STRING(REGEX REPLACE "[^+]" "" HGCHANGED ${version_suffix})
4360
6cdb427ef82c update build files for compliance with Mac AppStore
koda
parents: 4337
diff changeset
    23
			STRING(REGEX REPLACE "([0-9a-zA-Z]+)(.*) ([0-9]+)(.*)" "\\3:\\1" version_suffix ${version_suffix})
4903
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    24
			IF (HGCHANGED)
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    25
				MESSAGE(STATUS "Building revision ${version_suffix} (SOURCE CODE MODIFIED)")
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    26
			ELSE()
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    27
				MESSAGE(STATUS "Building revision ${version_suffix}")
21dd1def5aaf if source has uncommitted changes:
sheepluva
parents: 4845
diff changeset
    28
			ENDIF()
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4360
diff changeset
    29
			set(version_suffix "-${version_suffix}")
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
    30
		ENDIF()
3074
271cfcb2bcda Frontend:
smxx
parents: 3055
diff changeset
    31
	ENDIF()
271cfcb2bcda Frontend:
smxx
parents: 3055
diff changeset
    32
ELSE()
271cfcb2bcda Frontend:
smxx
parents: 3055
diff changeset
    33
	set(HW_DEV false)
2672
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    34
ENDIF()
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    35
1843
16cdd1745b73 Add QCA2 checks to build system
unc0rr
parents: 1758
diff changeset
    36
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules)
1107
ee873ada9e86 Supress CMake warning
unc0rr
parents: 1074
diff changeset
    37
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
    38
set(CPACK_PACKAGE_VERSION_MAJOR "0")
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
    39
set(CPACK_PACKAGE_VERSION_MINOR "9")
4829
1d555e738a3a Set version to 0.9.16-dev
unc0rr
parents: 4731
diff changeset
    40
set(CPACK_PACKAGE_VERSION_PATCH "16${version_suffix}")
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
    41
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    42
#forbid in-tree building
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    43
#IF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR})
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    44
#	MESSAGE(STATUS "Please do an out-of-tree build:")
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    45
#	MESSAGE(STATUS "rm CMakeCache.txt; mkdir build; cd build; cmake ..; make")
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    46
#	MESSAGE(FATAL_ERROR "In-tree-build detected!")
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    47
#ENDIF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR})
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    48
3495
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    49
#set some safe values
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    50
IF(NOT WITH_SERVER)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    51
	SET(WITH_SERVER 0)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    52
ENDIF(NOT WITH_SERVER)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    53
IF(NOT BUILD_ENGINE_LIBRARY)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    54
	SET(BUILD_ENGINE_LIBRARY 0)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    55
ENDIF(NOT BUILD_ENGINE_LIBRARY)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
    56
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    57
2015
d2848d723690 koda's patch
unc0rr
parents: 2005
diff changeset
    58
if(APPLE)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    59
	set(CMAKE_FIND_FRAMEWORK "FIRST")
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    60
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    61
	#paths for creating the bundle
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    62
	set(bundle_name Hedgewars.app)
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    63
	set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    64
	set(DATA_INSTALL_DIR "../Resources/")
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    65
	set(target_dir ".")
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    66
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
    67
	#what system are we building for
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
    68
	set(minimum_macosx $ENV{MACOSX_DEPLOYMENT_TARGET})
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    69
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    70
	#detect on which system are we
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    71
	EXEC_PROGRAM("/usr/bin/sw_vers" OUTPUT_VARIABLE MACOSX_VERSION_TMP)
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    72
	STRING(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" MACOSX_VERSION_TMP "${MACOSX_VERSION_TMP}")
3345
25ad24233e77 don't polish other people patches
koda
parents: 3338
diff changeset
    73
	STRING(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${MACOSX_VERSION_TMP})
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    74
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    75
	if(NOT minimum_macosx)
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    76
		#if nothing is set, we deploy only for the current system
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    77
		set(minimum_macosx ${current_macosx_version})
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
    78
	endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    79
2929
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    80
	if (minimum_macosx LESS "10.4")
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    81
		set(FATAL "Hedgewars is not supported for pre-10.4 systems")
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    82
	endif()
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    83
3055
f542a36ef6c0 fix a build error on 10.5, LandPixels properly initialized
koda
parents: 2929
diff changeset
    84
	set(CMAKE_OSX_ARCHITECTURES "i386;ppc7400")
3199
1a9938a27677 fixes to the mac build system
koda
parents: 3198
diff changeset
    85
2669
4eec706e86b0 introduction of IMG_Init
koda
parents: 2666
diff changeset
    86
	#create universal binaries only when it's time to bundle the application, also build server
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
    87
	IF(BUNDLE)
3221
3e6586c1ab4f koda's changelog turn
koda
parents: 3205
diff changeset
    88
		set(WITH_SERVER true)
2929
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    89
		if(NOT minimum_macosx MATCHES "10.6")
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    90
			set(CMAKE_C_COMPILER "gcc-4.0")
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
    91
			set(CMAKE_CXX_COMPILER "g++-4.0")
3221
3e6586c1ab4f koda's changelog turn
koda
parents: 3205
diff changeset
    92
		else()
3e6586c1ab4f koda's changelog turn
koda
parents: 3205
diff changeset
    93
			if(current_macosx_version MATCHES "10.6")
4756
9f20a38a385a add 32 bit version when building for macappstore
koda
parents: 4721
diff changeset
    94
				if(MACAPPSTORE)
9f20a38a385a add 32 bit version when building for macappstore
koda
parents: 4721
diff changeset
    95
					set(CMAKE_OSX_ARCHITECTURES "x86_64;i386")
9f20a38a385a add 32 bit version when building for macappstore
koda
parents: 4721
diff changeset
    96
				else()
9f20a38a385a add 32 bit version when building for macappstore
koda
parents: 4721
diff changeset
    97
					set(CMAKE_OSX_ARCHITECTURES "x86_64")
9f20a38a385a add 32 bit version when building for macappstore
koda
parents: 4721
diff changeset
    98
				endif()
3221
3e6586c1ab4f koda's changelog turn
koda
parents: 3205
diff changeset
    99
			endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   100
		endif()
3199
1a9938a27677 fixes to the mac build system
koda
parents: 3198
diff changeset
   101
	ELSE()
1a9938a27677 fixes to the mac build system
koda
parents: 3198
diff changeset
   102
		if(current_macosx_version MATCHES "10.6")
1a9938a27677 fixes to the mac build system
koda
parents: 3198
diff changeset
   103
			set(CMAKE_OSX_ARCHITECTURES "x86_64")
1a9938a27677 fixes to the mac build system
koda
parents: 3198
diff changeset
   104
		endif()
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
   105
	ENDIF()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   106
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
   107
	message(STATUS "Target system: Mac OS X ${minimum_macosx} ${CMAKE_OSX_ARCHITECTURES}")
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   108
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   109
	if(minimum_macosx MATCHES "10.4")
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   110
		set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/")
3338
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   111
		if(current_macosx_version MATCHES "10.4")
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   112
			find_package(SDL_mixer REQUIRED)
3495
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
   113
			set(pascal_compiler_flags_cmn "-k-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg" "-k-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod" ${pascal_compiler_flags_cmn})
3345
25ad24233e77 don't polish other people patches
koda
parents: 3338
diff changeset
   114
			set(CMAKE_C_FLAGS "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg -dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod")
3338
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   115
		endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   116
	else()
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   117
		set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${minimum_macosx}.sdk/")
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   118
	endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   119
3495
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
   120
	#1.set deployment target; 2.link with libsdlmain.a (when building an executable); 3.link with liblua.a (which requires readline)
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
   121
	set(pascal_compiler_flags_cmn "-k-macosx_version_min" "-k${minimum_macosx}" "-XR${CMAKE_OSX_SYSROOT}" ${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: 3407
diff changeset
   122
	if(NOT BUILD_ENGINE_LIBRARY)
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
   123
		set(pascal_compiler_flags_cmn "-k${CMAKE_BINARY_DIR}/bin/libSDLmain.a" ${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: 3407
diff changeset
   124
	endif()
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
   125
	set(pascal_compiler_flags_cmn "-k${CMAKE_BINARY_DIR}/bin/liblua.a" "-k-lreadline" ${pascal_compiler_flags_cmn})
2203
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   126
else(APPLE)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   127
	set(target_dir "bin")
2015
d2848d723690 koda's patch
unc0rr
parents: 2005
diff changeset
   128
endif(APPLE)
d2848d723690 koda's patch
unc0rr
parents: 2005
diff changeset
   129
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   130
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   131
#this snippet sets "Release" mode by default
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   132
#IF (NOT CMAKE_BUILD_TYPE)
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   133
#	SET(CMAKE_BUILD_TYPE "Release")
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   134
#ENDIF (NOT CMAKE_BUILD_TYPE)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   135
if (NOT CMAKE_BUILD_TYPE)
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   136
	set (CMAKE_BUILD_TYPE RELEASE CACHE STRING "Choose the type of build, options are: None Debug Release." FORCE)
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   137
endif (NOT CMAKE_BUILD_TYPE)
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   138
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   139
if(CMAKE_BUILD_TYPE MATCHES RELEASE OR CMAKE_BUILD_TYPE MATCHES "Release")
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
   140
	message(STATUS "Building Release")
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   141
	set(Optz true)
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   142
else()
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
   143
	message(STATUS "Building Debug")
2834
61f14237dc56 General:
smxx
parents: 2827
diff changeset
   144
	#set(CMAKE_VERBOSE_MAKEFILE true)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   145
	set(Optz false)
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   146
endif()
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   147
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   148
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   149
#set default flags values for all the project
3338
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   150
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}")
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   151
set(CMAKE_C_FLAGS_RELEASE "-w -O2 -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}")
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   152
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}")
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   153
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS})
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   154
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE})
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   155
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG})
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   156
3407
dcc129c4352e Engine:
smxx
parents: 3353
diff changeset
   157
set(pascal_compiler_flags_cmn "-B" "-FE../bin" "-Cs2000000" "-vewn" ${pascal_compiler_flags_cmn})
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   158
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   159
if(Optz)
3677
7d917b587547 Engine:
smaxx
parents: 3629
diff changeset
   160
#	set(pascal_compiler_flags_cmn "-O3" "-OpPENTIUM4" "-CfSSE3" "-Xs" "-Si" ${pascal_compiler_flags_cmn})
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2663
diff changeset
   161
	set(pascal_compiler_flags_cmn "-O2" "-Xs" "-Si" ${pascal_compiler_flags_cmn})
4612
e82758d6f924 - Reactivate pings timer, reimplement PING handler
unc0rr
parents: 4460
diff changeset
   162
	set(haskell_compiler_flags_cmn "-O2" "-w" "-fno-warn-unused-do-bind")
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   163
else(Optz)
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3539
diff changeset
   164
	set(pascal_compiler_flags_cmn "-O-" "-g" "-gh" "-gl" "-dDEBUGFILE" ${pascal_compiler_flags_cmn})
4612
e82758d6f924 - Reactivate pings timer, reimplement PING handler
unc0rr
parents: 4460
diff changeset
   165
	set(haskell_compiler_flags_cmn "-Wall" "-debug" "-dcore-lint" "-fno-warn-unused-do-bind")
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   166
endif(Optz)
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   167
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   168
266
53f46353d029 one else fix
displacer
parents: 265
diff changeset
   169
if(DEFINED DATA_INSTALL_DIR)
262
b4bc05237c06 fixed absent DATA_INSTALL_DIR
displacer
parents: 261
diff changeset
   170
	set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/)
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   171
else()
262
b4bc05237c06 fixed absent DATA_INSTALL_DIR
displacer
parents: 261
diff changeset
   172
	set(SHAREPATH share/hedgewars/)
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   173
endif()
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 205
diff changeset
   174
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   175
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   176
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
4829
1d555e738a3a Set version to 0.9.16-dev
unc0rr
parents: 4731
diff changeset
   177
set(HEDGEWARS_PROTO_VER 38)
271
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
   178
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   179
if(WITH_SERVER)
3495
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3407
diff changeset
   180
	message(STATUS "Server is going to be built! Make sure you have GHC installed")
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   181
	set(HAVE_NETSERVER true)
1979
912e450d4db2 - Add gameServer to build system
unc0rr
parents: 1843
diff changeset
   182
	add_subdirectory(gameServer)
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   183
else(WITH_SERVER)
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   184
	set(HAVE_NETSERVER false)
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   185
endif(WITH_SERVER)
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   186
3525
1d7b056ff866 some memory caring code
koda
parents: 3522
diff changeset
   187
add_subdirectory(misc/liblua)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   188
add_subdirectory(hedgewars)
3539
c3d1fccbe0ed General:
smaxx
parents: 3532
diff changeset
   189
#add_subdirectory(misc/libopenalbridge)
3515
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   190
if(NOT BUILD_ENGINE_LIBRARY)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   191
	add_subdirectory(bin)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   192
	add_subdirectory(QTfrontend)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   193
	add_subdirectory(share)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   194
	add_subdirectory(tools)
3e8635f43972 fix cmakefiles to work with mercurial
koda
parents: 3495
diff changeset
   195
endif()
2203
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   196
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   197
# CPack vars
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   198
3338
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   199
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy")
2827
45817d8386c7 Engine:
smxx
parents: 2822
diff changeset
   200
set(CPACK_PACKAGE_VENDOR "Hedgewars Project")
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   201
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}")
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   202
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}")
1459
cf6fa7c9cf45 Fix generator name (TBZ2 instead of BZ2)
unc0rr
parents: 1458
diff changeset
   203
set(CPACK_SOURCE_GENERATOR "TBZ2")
1173
70b0acd4548c Revert accidental nsis installer generator regression
unc0rr
parents: 1159
diff changeset
   204
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars")
458
5880af7b530a Fix build
unc0rr
parents: 360
diff changeset
   205
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   206
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   207
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   208
if(WIN32 AND NOT UNIX)
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3697
diff changeset
   209
	set(CPACK_NSIS_DISPLAY_NAME "Hedgewars")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   210
	set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/")
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   211
	set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/")
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   212
	set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com")
1159
49c88f620e51 Various build system improvements
unc0rr
parents: 1141
diff changeset
   213
	set(CPACK_NSIS_MODIFY_PATH OFF)
49c88f620e51 Various build system improvements
unc0rr
parents: 1141
diff changeset
   214
	set(CPACK_GENERATOR "ZIP;NSIS")
3301
smxx
parents: 3292
diff changeset
   215
	set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   216
else(WIN32 AND NOT UNIX)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   217
	set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine")
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   218
endif(WIN32 AND NOT UNIX)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   219
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   220
set(CPACK_SOURCE_IGNORE_FILES
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   221
	"~"
4309
a69c73c5d173 merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
parents: 4252 4283
diff changeset
   222
	"\\\\.hg"
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   223
	"\\\\.svn"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   224
	"\\\\.exe$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   225
	"\\\\.a$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   226
	"\\\\.dll$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   227
	"\\\\.xcf$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   228
	"\\\\.cxx$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   229
	"\\\\.db$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   230
	"\\\\.dof$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   231
	"\\\\.layout$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   232
	"\\\\.zip$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   233
	"\\\\.gz$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   234
	"\\\\.bz2$"
722
993faebbe546 - Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents: 720
diff changeset
   235
	"\\\\.tmp$"
993faebbe546 - Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents: 720
diff changeset
   236
	"\\\\.core$"
993faebbe546 - Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents: 720
diff changeset
   237
	"\\\\.sh$"
4309
a69c73c5d173 merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
parents: 4252 4283
diff changeset
   238
	"\\\\.sifz$"
a69c73c5d173 merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
parents: 4252 4283
diff changeset
   239
	"\\\\.svg$"
a69c73c5d173 merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
parents: 4252 4283
diff changeset
   240
	"\\\\.svgz$"
727
da975a75af09 Fix all issues with make package_source on my system
unc0rr
parents: 722
diff changeset
   241
	"\\\\.ppu$"
4309
a69c73c5d173 merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
parents: 4252 4283
diff changeset
   242
	"\\\\.psd$"
727
da975a75af09 Fix all issues with make package_source on my system
unc0rr
parents: 722
diff changeset
   243
	"\\\\.o$"
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   244
	"Makefile"
722
993faebbe546 - Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents: 720
diff changeset
   245
	"Doxyfile"
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   246
	"CMakeFiles"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   247
	"debug"
727
da975a75af09 Fix all issues with make package_source on my system
unc0rr
parents: 722
diff changeset
   248
	"release$"
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   249
	"Debug$"
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   250
	"Release$"
4731
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   251
	"proto\\\\.inc$"
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   252
	"hwconsts\\\\.cpp$"
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   253
	"playlist\\\\.inc$"
722
993faebbe546 - Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents: 720
diff changeset
   254
	"CPack"
4731
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   255
	"cmake_install\\\\.cmake$"
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   256
	"config\\\\.inc$"
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   257
	"hwengine\\\\.desktop$"
edf7d04d3fa9 merge 0.9.15 (with a typo fix)
nemo
parents: 4721
diff changeset
   258
	"CMakeCache\\\\.txt$"
4276
3ba228dcc6d7 Ban .svg, .psd, .sifz from being present in 'make package_source' output
unc0rr
parents: 4274
diff changeset
   259
#   "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge"
3522
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   260
	"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   261
	"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   262
	"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   263
	"^${CMAKE_CURRENT_SOURCE_DIR}/doc"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   264
	"^${CMAKE_CURRENT_SOURCE_DIR}/templates"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   265
	"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   266
	"^${CMAKE_CURRENT_SOURCE_DIR}/realtest"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   267
	"^${CMAKE_CURRENT_SOURCE_DIR}/tmp"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   268
	"^${CMAKE_CURRENT_SOURCE_DIR}/utils"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   269
	"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   270
	"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   271
	"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   272
	"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt"
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3520
diff changeset
   273
	"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\."
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   274
)
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   275
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   276
include(CPack)