author | svetlisa |
Tue, 19 Jul 2011 12:02:24 +0200 | |
changeset 5420 | a09227b6c05b |
parent 5407 | 486231e82e8d |
child 5429 | 0caa7519cbd1 |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
2 |
||
5407 | 3 |
|
4 |
#initialise cmake environment |
|
1461
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1459
diff
changeset
|
5 |
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR) |
5169 | 6 |
FOREACH(policy CMP0003 CMP0012) |
7 |
IF(POLICY ${policy}) |
|
8 |
CMAKE_POLICY(SET ${policy} NEW) |
|
9 |
ENDIF() |
|
10 |
ENDFOREACH() |
|
5407 | 11 |
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules) |
5405 | 12 |
|
1107 | 13 |
|
4252 | 14 |
#detect Mercurial revision (if present) |
4731 | 15 |
set(version_suffix "-dev") #UNSET THIS VARIABLE AT RELEASE TIME |
4903 | 16 |
set(HGCHANGED "") |
3074 | 17 |
IF(version_suffix MATCHES "-dev") |
18 |
set(HW_DEV true) |
|
3697 | 19 |
IF (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.hg) |
3515 | 20 |
FIND_PROGRAM(HGCOMMAND hg) |
21 |
IF(HGCOMMAND) |
|
3697 | 22 |
exec_program(${HGCOMMAND} |
3520
c3dcb80bdb1d
add local rev number/rev count to dev version suffix
sheepluva
parents:
3515
diff
changeset
|
23 |
ARGS identify -in ${CMAKE_CURRENT_SOURCE_DIR} |
3515 | 24 |
OUTPUT_VARIABLE version_suffix |
25 |
) |
|
4903 | 26 |
STRING(REGEX REPLACE "[^+]" "" HGCHANGED ${version_suffix}) |
4360 | 27 |
STRING(REGEX REPLACE "([0-9a-zA-Z]+)(.*) ([0-9]+)(.*)" "\\3:\\1" version_suffix ${version_suffix}) |
4903 | 28 |
IF (HGCHANGED) |
29 |
MESSAGE(STATUS "Building revision ${version_suffix} (SOURCE CODE MODIFIED)") |
|
30 |
ELSE() |
|
31 |
MESSAGE(STATUS "Building revision ${version_suffix}") |
|
32 |
ENDIF() |
|
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4360
diff
changeset
|
33 |
set(version_suffix "-${version_suffix}") |
3515 | 34 |
ENDIF() |
3074 | 35 |
ENDIF() |
36 |
ELSE() |
|
37 |
set(HW_DEV false) |
|
2672 | 38 |
ENDIF() |
39 |
||
1107 | 40 |
|
5405 | 41 |
#versioning |
5407 | 42 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
43 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
44 |
set(CPACK_PACKAGE_VERSION_PATCH 16${version_suffix}) |
|
45 |
set(HEDGEWARS_PROTO_VER 38) |
|
46 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
|
5405 | 47 |
|
907 | 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) |
5188 | 56 |
set(target_dir "bin") |
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
|
57 |
|
2641 | 58 |
|
5405 | 59 |
#bundle .app setup |
2015 | 60 |
if(APPLE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
61 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
3697 | 62 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
63 |
#paths for creating the bundle |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
64 |
set(bundle_name Hedgewars.app) |
5169 | 65 |
set(frameworks_dir ${bundle_name}/Contents/Frameworks/) |
3697 | 66 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
67 |
set(DATA_INSTALL_DIR "../Resources/") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
68 |
set(target_dir ".") |
3697 | 69 |
|
2669 | 70 |
#what system are we building for |
5188 | 71 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
3697 | 72 |
|
2641 | 73 |
#detect on which system are we |
5169 | 74 |
EXEC_PROGRAM("/usr/bin/sw_vers" ARGS "-productVersion" OUTPUT_VARIABLE current_macosx_version) |
75 |
STRING(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version}) |
|
2641 | 76 |
|
5053 | 77 |
#if nothing is set, we deploy only for the current system |
5188 | 78 |
if(NOT minimum_macosx_version) |
79 |
set(minimum_macosx_version ${current_macosx_version}) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
80 |
endif() |
2641 | 81 |
|
5188 | 82 |
#who uses them anyway? |
83 |
if (minimum_macosx_version LESS "10.4") |
|
84 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
|
2929 | 85 |
endif() |
86 |
||
5169 | 87 |
#this variable needs to be set for frapascal universal binary |
5053 | 88 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
5188 | 89 |
if(current_macosx_version LESS "10.6") |
90 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
|
91 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
92 |
else() |
|
93 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
94 |
endif() |
|
3221 | 95 |
else() |
5188 | 96 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
2641 | 97 |
endif() |
5053 | 98 |
endif() |
99 |
||
100 |
#be sure to select ppc-compatible toolchains just in case |
|
5188 | 101 |
if(minimum_macosx_version LESS "10.6") |
5053 | 102 |
set(CMAKE_C_COMPILER "gcc-4.0") |
103 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
104 |
endif() |
|
2641 | 105 |
|
5188 | 106 |
if(minimum_macosx_version MATCHES "10.4") |
2641 | 107 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
5188 | 108 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
109 |
if(current_macosx_version MATCHES "10.4") |
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
110 |
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
|
111 |
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 | 112 |
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
|
113 |
endif() |
2641 | 114 |
else() |
5188 | 115 |
STRING(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
116 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
117 |
endif() |
2641 | 118 |
|
5223
5730238e7ee6
allow fpc to search through the user directory when linking frameworks
koda
parents:
5188
diff
changeset
|
119 |
#add user framework directory |
5730238e7ee6
allow fpc to search through the user directory when linking frameworks
koda
parents:
5188
diff
changeset
|
120 |
set(pascal_compiler_flags_cmn "-Ff~/Library/Frameworks" ${pascal_compiler_flags_cmn}) |
5188 | 121 |
#set deployment target |
122 |
set(pascal_compiler_flags_cmn "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}" ${pascal_compiler_flags_cmn}) |
|
123 |
#link with liblua.a (which requires readline) |
|
124 |
set(pascal_compiler_flags_cmn "-k${CMAKE_BINARY_DIR}/bin/liblua.a" "-k-lreadline" ${pascal_compiler_flags_cmn}) |
|
125 |
#link with libsdlmain.a (when building an executable) |
|
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
|
126 |
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
|
127 |
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
|
128 |
endif() |
5188 | 129 |
|
130 |
message(STATUS "Build system: Mac OS X ${current_macosx_version} with GCC:${CMAKE_C_COMPILER}") |
|
131 |
message(STATUS "Target system: Mac OS X ${minimum_macosx_version} for architecture(s):${CMAKE_OSX_ARCHITECTURES}") |
|
2015 | 132 |
endif(APPLE) |
133 |
||
2406 | 134 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
135 |
#this snippet sets "Release" mode by default |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
136 |
if (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
137 |
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
|
138 |
endif (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
139 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
140 |
if(CMAKE_BUILD_TYPE MATCHES RELEASE OR CMAKE_BUILD_TYPE MATCHES "Release") |
3697 | 141 |
message(STATUS "Building Release") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
142 |
set(Optz true) |
2406 | 143 |
else() |
3697 | 144 |
message(STATUS "Building Debug") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
145 |
set(Optz false) |
2406 | 146 |
endif() |
147 |
||
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 | 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 | 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 | 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 | 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 | 169 |
if(DEFINED DATA_INSTALL_DIR) |
262 | 170 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 171 |
else() |
262 | 172 |
set(SHAREPATH share/hedgewars/) |
2652 | 173 |
endif() |
220 | 174 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
184 | 175 |
|
271 | 176 |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
177 |
if(WITH_SERVER) |
5053 | 178 |
find_program(ghc_executable ghc) |
179 |
||
180 |
if(ghc_executable) |
|
181 |
set(HAVE_NETSERVER true) |
|
182 |
add_subdirectory(gameServer) |
|
183 |
else() |
|
184 |
message(STATUS "No GHC executable found, server will *not* be built") |
|
185 |
set(HAVE_NETSERVER false) |
|
186 |
endif() |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
187 |
else(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
188 |
set(HAVE_NETSERVER false) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
189 |
endif(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
190 |
|
3525 | 191 |
add_subdirectory(misc/liblua) |
184 | 192 |
add_subdirectory(hedgewars) |
5053 | 193 |
|
3515 | 194 |
if(NOT BUILD_ENGINE_LIBRARY) |
195 |
add_subdirectory(bin) |
|
196 |
add_subdirectory(QTfrontend) |
|
197 |
add_subdirectory(share) |
|
198 |
add_subdirectory(tools) |
|
199 |
endif() |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
200 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
201 |
|
5405 | 202 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
203 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 204 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 205 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
206 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 207 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
208 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 209 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 210 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 211 |
|
212 |
if(WIN32 AND NOT UNIX) |
|
3704 | 213 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
184 | 214 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
215 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
216 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
1159 | 217 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
218 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
3301 | 219 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
184 | 220 |
else(WIN32 AND NOT UNIX) |
221 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
|
222 |
endif(WIN32 AND NOT UNIX) |
|
223 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
224 |
set(CPACK_SOURCE_IGNORE_FILES |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
225 |
"~" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
226 |
"\\\\.hg" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
227 |
"\\\\.svn" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
228 |
"\\\\.exe$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
229 |
"\\\\.a$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
230 |
"\\\\.dll$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
231 |
"\\\\.xcf$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
232 |
"\\\\.cxx$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
233 |
"\\\\.db$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
234 |
"\\\\.dof$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
235 |
"\\\\.layout$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
236 |
"\\\\.zip$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
237 |
"\\\\.gz$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
238 |
"\\\\.bz2$" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
239 |
"\\\\.tmp$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
240 |
"\\\\.core$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
241 |
"\\\\.sh$" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
242 |
"\\\\.sifz$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
243 |
"\\\\.svg$" |
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
244 |
"\\\\.svgz$" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
245 |
"\\\\.ppu$" |
4309
a69c73c5d173
merge of 0.9.14 changes into default - hopefully I successfully avoided the parts we don't want
nemo
diff
changeset
|
246 |
"\\\\.psd$" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
247 |
"\\\\.o$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
248 |
"Makefile" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
249 |
"Doxyfile" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
250 |
"CMakeFiles" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
251 |
"debug" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
252 |
"release$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
253 |
"Debug$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
254 |
"Release$" |
4731 | 255 |
"proto\\\\.inc$" |
256 |
"hwconsts\\\\.cpp$" |
|
257 |
"playlist\\\\.inc$" |
|
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
258 |
"CPack" |
4731 | 259 |
"cmake_install\\\\.cmake$" |
260 |
"config\\\\.inc$" |
|
261 |
"hwengine\\\\.desktop$" |
|
262 |
"CMakeCache\\\\.txt$" |
|
5173 | 263 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
264 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
|
265 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
|
266 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
|
3522
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
267 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
268 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
269 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
270 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
271 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
272 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
273 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
274 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
275 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
276 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
277 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
278 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
279 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3520
diff
changeset
|
280 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
281 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
282 |
|
184 | 283 |
include(CPack) |
5407 | 284 |