author | unC0Rr |
Thu, 18 Nov 2010 17:00:45 +0300 | |
changeset 4381 | 8867bc102f05 |
parent 4337 | 85e02b1a8e8f |
child 4360 | 6cdb427ef82c |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
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 | 4 |
cmake_policy(SET CMP0003 NEW) |
184 | 5 |
|
3515 | 6 |
IF(POLICY CMP0012) |
7 |
cmake_policy(SET CMP0012 NEW) |
|
8 |
ENDIF() |
|
1107 | 9 |
|
4252 | 10 |
#detect Mercurial revision (if present) |
3306 | 11 |
set(version_suffix "-dev") #UNSET THIS VARIABLE AT RELEASE TIME |
3074 | 12 |
IF(version_suffix MATCHES "-dev") |
13 |
set(HW_DEV true) |
|
3697 | 14 |
IF (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.hg) |
3515 | 15 |
FIND_PROGRAM(HGCOMMAND hg) |
16 |
IF(HGCOMMAND) |
|
3697 | 17 |
exec_program(${HGCOMMAND} |
3520
c3dcb80bdb1d
add local rev number/rev count to dev version suffix
sheepluva
parents:
3515
diff
changeset
|
18 |
ARGS identify -in ${CMAKE_CURRENT_SOURCE_DIR} |
3515 | 19 |
OUTPUT_VARIABLE version_suffix |
20 |
) |
|
3520
c3dcb80bdb1d
add local rev number/rev count to dev version suffix
sheepluva
parents:
3515
diff
changeset
|
21 |
STRING(REGEX REPLACE "(.*) +(.*)" "\\2:\\1" version_suffix ${version_suffix}) |
3677 | 22 |
MESSAGE(STATUS "Building revision ${version_suffix}") |
3515 | 23 |
set(version_suffix ".${version_suffix}") |
24 |
# #truncate to numbers only - trying to fix a problem described in http://www.hedgewars.org/node/2019 |
|
25 |
# STRING(REGEX REPLACE "^\\.(\\d+)" ".\\1" version_suffix ${version_suffix}) |
|
26 |
# # screw whole suffix if there's no number |
|
27 |
# STRING(REGEX REPLACE "^\\.([a-z]+.*)" "-dev" version_suffix ${version_suffix}) |
|
28 |
ENDIF() |
|
3074 | 29 |
ENDIF() |
30 |
ELSE() |
|
31 |
set(HW_DEV false) |
|
2672 | 32 |
ENDIF() |
33 |
||
1843 | 34 |
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules) |
1107 | 35 |
|
907 | 36 |
set(CPACK_PACKAGE_VERSION_MAJOR "0") |
37 |
set(CPACK_PACKAGE_VERSION_MINOR "9") |
|
4252 | 38 |
set(CPACK_PACKAGE_VERSION_PATCH "15${version_suffix}") |
907 | 39 |
|
2641 | 40 |
#forbid in-tree building |
41 |
#IF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR}) |
|
42 |
# MESSAGE(STATUS "Please do an out-of-tree build:") |
|
43 |
# MESSAGE(STATUS "rm CMakeCache.txt; mkdir build; cd build; cmake ..; make") |
|
44 |
# MESSAGE(FATAL_ERROR "In-tree-build detected!") |
|
45 |
#ENDIF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR}) |
|
46 |
||
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
|
47 |
#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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
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
|
54 |
|
2641 | 55 |
|
2015 | 56 |
if(APPLE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
57 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
3697 | 58 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
59 |
#paths for creating the bundle |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
60 |
set(bundle_name Hedgewars.app) |
3697 | 61 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
62 |
set(DATA_INSTALL_DIR "../Resources/") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
63 |
set(target_dir ".") |
3697 | 64 |
|
2669 | 65 |
#what system are we building for |
66 |
set(minimum_macosx $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 67 |
|
2641 | 68 |
#detect on which system are we |
69 |
EXEC_PROGRAM("/usr/bin/sw_vers" OUTPUT_VARIABLE MACOSX_VERSION_TMP) |
|
70 |
STRING(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" MACOSX_VERSION_TMP "${MACOSX_VERSION_TMP}") |
|
3345 | 71 |
STRING(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${MACOSX_VERSION_TMP}) |
2641 | 72 |
|
73 |
if(NOT minimum_macosx) |
|
2822 | 74 |
#if nothing is set, we deploy only for the current system |
2641 | 75 |
set(minimum_macosx ${current_macosx_version}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
76 |
endif() |
2641 | 77 |
|
2929 | 78 |
if (minimum_macosx LESS "10.4") |
79 |
set(FATAL "Hedgewars is not supported for pre-10.4 systems") |
|
80 |
endif() |
|
81 |
||
3055
f542a36ef6c0
fix a build error on 10.5, LandPixels properly initialized
koda
parents:
2929
diff
changeset
|
82 |
set(CMAKE_OSX_ARCHITECTURES "i386;ppc7400") |
3199 | 83 |
|
2822 | 84 |
|
2669 | 85 |
#create universal binaries only when it's time to bundle the application, also build server |
2641 | 86 |
IF(BUNDLE) |
3221 | 87 |
set(WITH_SERVER true) |
2929 | 88 |
if(NOT minimum_macosx MATCHES "10.6") |
89 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
90 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
3221 | 91 |
else() |
92 |
if(current_macosx_version MATCHES "10.6") |
|
93 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
94 |
endif() |
|
2641 | 95 |
endif() |
3199 | 96 |
ELSE() |
97 |
if(current_macosx_version MATCHES "10.6") |
|
98 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
99 |
endif() |
|
3697 | 100 |
ENDIF() |
2641 | 101 |
|
3697 | 102 |
message(STATUS "Target system: Mac OS X ${minimum_macosx} ${CMAKE_OSX_ARCHITECTURES}") |
2641 | 103 |
|
104 |
if(minimum_macosx MATCHES "10.4") |
|
105 |
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
|
106 |
if(current_macosx_version MATCHES "10.4") |
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
107 |
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
|
108 |
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 | 109 |
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
|
110 |
endif() |
2641 | 111 |
else() |
112 |
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
|
113 |
endif() |
2641 | 114 |
|
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
|
115 |
#1.set deployment target; 2.link with libsdlmain.a (when building an executable); 3.link with liblua.a (which requires readline) |
2822 | 116 |
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
|
117 |
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
|
118 |
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
|
119 |
endif() |
2822 | 120 |
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
|
121 |
else(APPLE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
122 |
set(target_dir "bin") |
2015 | 123 |
endif(APPLE) |
124 |
||
2406 | 125 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
126 |
#this snippet sets "Release" mode by default |
2641 | 127 |
#IF (NOT CMAKE_BUILD_TYPE) |
128 |
# SET(CMAKE_BUILD_TYPE "Release") |
|
129 |
#ENDIF (NOT CMAKE_BUILD_TYPE) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
130 |
if (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
131 |
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
|
132 |
endif (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
133 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
134 |
if(CMAKE_BUILD_TYPE MATCHES RELEASE OR CMAKE_BUILD_TYPE MATCHES "Release") |
3697 | 135 |
message(STATUS "Building Release") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
136 |
set(Optz true) |
2406 | 137 |
else() |
3697 | 138 |
message(STATUS "Building Debug") |
2834 | 139 |
#set(CMAKE_VERBOSE_MAKEFILE true) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
140 |
set(Optz false) |
2406 | 141 |
endif() |
142 |
||
143 |
||
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
144 |
#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
|
145 |
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
|
146 |
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
|
147 |
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
|
148 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
149 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
150 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
151 |
|
3407 | 152 |
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
|
153 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
154 |
if(Optz) |
3677 | 155 |
# 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
|
156 |
set(pascal_compiler_flags_cmn "-O2" "-Xs" "-Si" ${pascal_compiler_flags_cmn}) |
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(haskell_compiler_flags_cmn "-O2" "-w") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
158 |
else(Optz) |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3539
diff
changeset
|
159 |
set(pascal_compiler_flags_cmn "-O-" "-g" "-gh" "-gl" "-dDEBUGFILE" ${pascal_compiler_flags_cmn}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
160 |
set(haskell_compiler_flags_cmn "-Wall" "-debug" "-dcore-lint") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
161 |
endif(Optz) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
162 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
163 |
|
266 | 164 |
if(DEFINED DATA_INSTALL_DIR) |
262 | 165 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 166 |
else() |
262 | 167 |
set(SHAREPATH share/hedgewars/) |
2652 | 168 |
endif() |
220 | 169 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
184 | 170 |
|
907 | 171 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
4252 | 172 |
set(HEDGEWARS_PROTO_VER 34) |
271 | 173 |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
174 |
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
|
175 |
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
|
176 |
set(HAVE_NETSERVER true) |
1979 | 177 |
add_subdirectory(gameServer) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
178 |
else(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
179 |
set(HAVE_NETSERVER false) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
180 |
endif(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
181 |
|
3525 | 182 |
add_subdirectory(misc/liblua) |
184 | 183 |
add_subdirectory(hedgewars) |
3539 | 184 |
#add_subdirectory(misc/libopenalbridge) |
3515 | 185 |
if(NOT BUILD_ENGINE_LIBRARY) |
186 |
add_subdirectory(bin) |
|
187 |
add_subdirectory(QTfrontend) |
|
188 |
add_subdirectory(share) |
|
189 |
add_subdirectory(tools) |
|
190 |
endif() |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
191 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
192 |
# CPack vars |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
193 |
|
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
194 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 195 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 196 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
197 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 198 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
199 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 200 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 201 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 202 |
|
203 |
if(WIN32 AND NOT UNIX) |
|
3704 | 204 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
184 | 205 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
206 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
207 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
1159 | 208 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
209 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
3301 | 210 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
184 | 211 |
else(WIN32 AND NOT UNIX) |
212 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
|
213 |
endif(WIN32 AND NOT UNIX) |
|
214 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
215 |
set(CPACK_SOURCE_IGNORE_FILES |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
216 |
"~" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
217 |
"\\\\.hg" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
218 |
"\\\\.svn" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
219 |
"\\\\.exe$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
220 |
"\\\\.a$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
221 |
"\\\\.dll$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
222 |
"\\\\.xcf$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
223 |
"\\\\.cxx$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
224 |
"\\\\.db$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
225 |
"\\\\.dof$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
226 |
"\\\\.layout$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
227 |
"\\\\.zip$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
228 |
"\\\\.gz$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
229 |
"\\\\.bz2$" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
230 |
"\\\\.tmp$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
231 |
"\\\\.core$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
232 |
"\\\\.sh$" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
233 |
"\\\\.sifz$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
234 |
"\\\\.svg$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
235 |
"\\\\.svgz$" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
236 |
"\\\\.ppu$" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
237 |
"\\\\.psd$" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
238 |
"\\\\.o$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
239 |
"Makefile" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
240 |
"Doxyfile" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
241 |
"CMakeFiles" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
242 |
"debug" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
243 |
"release$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
244 |
"Debug$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
245 |
"Release$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
246 |
"proto.inc$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
247 |
"hwconsts.cpp$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
248 |
"playlist.inc$" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
249 |
"CPack" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
250 |
"cmake_install.cmake$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
251 |
"config.inc$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
252 |
"hwengine.desktop$" |
4276
3ba228dcc6d7
Ban .svg, .psd, .sifz from being present in 'make package_source' output
unc0rr
parents:
4274
diff
changeset
|
253 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
3522
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
254 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
255 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
256 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
257 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
258 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
259 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
260 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
261 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
262 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
263 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
264 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
265 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
266 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
267 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
268 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
269 |
|
184 | 270 |
include(CPack) |