author | koda |
Sat, 05 Jun 2010 14:07:58 +0000 | |
changeset 3495 | a6b4f351d400 |
parent 3407 | dcc129c4352e |
child 3510 | 23145a950eae |
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) |
184 | 4 |
|
3074 | 5 |
IF(COMMAND cmake_policy) |
1107 | 6 |
cmake_policy(SET CMP0003 NEW) |
3074 | 7 |
ENDIF(COMMAND cmake_policy) |
1107 | 8 |
|
2672 | 9 |
#detect subversion revision (if present) |
3306 | 10 |
set(version_suffix "-dev") #UNSET THIS VARIABLE AT RELEASE TIME |
3074 | 11 |
IF(version_suffix MATCHES "-dev") |
12 |
set(HW_DEV true) |
|
13 |
IF (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.svn) |
|
14 |
FIND_PACKAGE(Subversion) |
|
15 |
IF(Subversion_FOUND) |
|
16 |
Subversion_WC_INFO(${CMAKE_HOME_DIRECTORY} Project) |
|
17 |
MESSAGE(STATUS "Builing revision ${Project_WC_REVISION}") |
|
18 |
set(version_suffix ".${Project_WC_REVISION}") |
|
3105 | 19 |
#truncate to numbers only - trying to fix a problem described in http://www.hedgewars.org/node/2019 |
3106 | 20 |
STRING(REGEX REPLACE "^\\.(\\d+)" ".\\1" version_suffix ${version_suffix}) |
21 |
# screw whole suffix if there's no number |
|
22 |
STRING(REGEX REPLACE "^\\.([a-z]+.*)" "-dev" version_suffix ${version_suffix}) |
|
3074 | 23 |
ENDIF(Subversion_FOUND) |
24 |
ENDIF() |
|
25 |
ELSE() |
|
26 |
set(HW_DEV false) |
|
2672 | 27 |
ENDIF() |
28 |
||
1843 | 29 |
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules) |
1107 | 30 |
|
907 | 31 |
set(CPACK_PACKAGE_VERSION_MAJOR "0") |
32 |
set(CPACK_PACKAGE_VERSION_MINOR "9") |
|
3303
397a8f048bb3
with this patch I'm unable to make rope stuck in land
unc0rr
parents:
3301
diff
changeset
|
33 |
set(CPACK_PACKAGE_VERSION_PATCH "14${version_suffix}") |
907 | 34 |
|
2641 | 35 |
#forbid in-tree building |
36 |
#IF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR}) |
|
37 |
# MESSAGE(STATUS "Please do an out-of-tree build:") |
|
38 |
# MESSAGE(STATUS "rm CMakeCache.txt; mkdir build; cd build; cmake ..; make") |
|
39 |
# MESSAGE(FATAL_ERROR "In-tree-build detected!") |
|
40 |
#ENDIF (${CMAKE_SOURCE_DIR} MATCHES ${CMAKE_BINARY_DIR}) |
|
41 |
||
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
|
42 |
#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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
|
2641 | 50 |
|
2015 | 51 |
if(APPLE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
52 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
2609 | 53 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
54 |
#paths for creating the bundle |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
55 |
set(bundle_name Hedgewars.app) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
56 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
57 |
set(DATA_INSTALL_DIR "../Resources/") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
58 |
set(target_dir ".") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
59 |
|
2669 | 60 |
#what system are we building for |
61 |
set(minimum_macosx $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
62 |
||
2641 | 63 |
#detect on which system are we |
64 |
EXEC_PROGRAM("/usr/bin/sw_vers" OUTPUT_VARIABLE MACOSX_VERSION_TMP) |
|
65 |
STRING(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" MACOSX_VERSION_TMP "${MACOSX_VERSION_TMP}") |
|
3345 | 66 |
STRING(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${MACOSX_VERSION_TMP}) |
2641 | 67 |
|
68 |
if(NOT minimum_macosx) |
|
2822 | 69 |
#if nothing is set, we deploy only for the current system |
2641 | 70 |
set(minimum_macosx ${current_macosx_version}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
71 |
endif() |
2641 | 72 |
|
2929 | 73 |
if (minimum_macosx LESS "10.4") |
74 |
set(FATAL "Hedgewars is not supported for pre-10.4 systems") |
|
75 |
endif() |
|
76 |
||
3055
f542a36ef6c0
fix a build error on 10.5, LandPixels properly initialized
koda
parents:
2929
diff
changeset
|
77 |
set(CMAKE_OSX_ARCHITECTURES "i386;ppc7400") |
3199 | 78 |
|
2822 | 79 |
|
2669 | 80 |
#create universal binaries only when it's time to bundle the application, also build server |
2641 | 81 |
IF(BUNDLE) |
3221 | 82 |
set(WITH_SERVER true) |
2929 | 83 |
if(NOT minimum_macosx MATCHES "10.6") |
84 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
85 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
3221 | 86 |
else() |
87 |
if(current_macosx_version MATCHES "10.6") |
|
88 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
89 |
endif() |
|
2641 | 90 |
endif() |
3199 | 91 |
ELSE() |
92 |
if(current_macosx_version MATCHES "10.6") |
|
93 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
94 |
endif() |
|
2641 | 95 |
ENDIF() |
96 |
||
2652 | 97 |
message(STATUS "Target system: Mac OS X ${minimum_macosx} ${CMAKE_OSX_ARCHITECTURES}") |
2641 | 98 |
|
99 |
if(minimum_macosx MATCHES "10.4") |
|
100 |
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
|
101 |
if(current_macosx_version MATCHES "10.4") |
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
102 |
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
|
103 |
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 | 104 |
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
|
105 |
endif() |
2641 | 106 |
else() |
107 |
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
|
108 |
endif() |
2641 | 109 |
|
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
|
110 |
#1.set deployment target; 2.link with libsdlmain.a (when building an executable); 3.link with liblua.a (which requires readline) |
2822 | 111 |
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
|
112 |
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
|
113 |
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
|
114 |
endif() |
2822 | 115 |
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
|
116 |
else(APPLE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
117 |
set(target_dir "bin") |
2015 | 118 |
endif(APPLE) |
119 |
||
2406 | 120 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
121 |
#this snippet sets "Release" mode by default |
2641 | 122 |
#IF (NOT CMAKE_BUILD_TYPE) |
123 |
# SET(CMAKE_BUILD_TYPE "Release") |
|
124 |
#ENDIF (NOT CMAKE_BUILD_TYPE) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
125 |
if (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
126 |
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
|
127 |
endif (NOT CMAKE_BUILD_TYPE) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
128 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
129 |
if(CMAKE_BUILD_TYPE MATCHES RELEASE OR CMAKE_BUILD_TYPE MATCHES "Release") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
130 |
message(STATUS "Building Release") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
131 |
set(Optz true) |
2406 | 132 |
else() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
133 |
message(STATUS "Building Debug") |
2834 | 134 |
#set(CMAKE_VERBOSE_MAKEFILE true) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
135 |
set(Optz false) |
2406 | 136 |
endif() |
137 |
||
138 |
||
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
139 |
#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
|
140 |
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
|
141 |
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
|
142 |
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
|
143 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
144 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
145 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
146 |
|
3407 | 147 |
set(pascal_compiler_flags_cmn "-B" "-FE../bin" "-Cs2000000" "-vewn" ${pascal_compiler_flags_cmn}) |
2652 | 148 |
if(LOWRES) |
149 |
set(pascal_compiler_flags_cmn "-dLOWRES" ${pascal_compiler_flags_cmn}) |
|
150 |
add_definitions(-DLOWRES) |
|
151 |
endif(LOWRES) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
152 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
153 |
if(Optz) |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2663
diff
changeset
|
154 |
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
|
155 |
set(haskell_compiler_flags_cmn "-O2" "-w") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
156 |
else(Optz) |
3407 | 157 |
set(pascal_compiler_flags_cmn "-O-" "-ghl" "-dDEBUGFILE" ${pascal_compiler_flags_cmn}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
158 |
set(haskell_compiler_flags_cmn "-Wall" "-debug" "-dcore-lint") |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
159 |
endif(Optz) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
160 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
161 |
|
266 | 162 |
if(DEFINED DATA_INSTALL_DIR) |
262 | 163 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 164 |
else() |
262 | 165 |
set(SHAREPATH share/hedgewars/) |
2652 | 166 |
endif() |
220 | 167 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
184 | 168 |
|
907 | 169 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
3303
397a8f048bb3
with this patch I'm unable to make rope stuck in land
unc0rr
parents:
3301
diff
changeset
|
170 |
set(HEDGEWARS_PROTO_VER 32) |
271 | 171 |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
172 |
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
|
173 |
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
|
174 |
set(HAVE_NETSERVER true) |
1979 | 175 |
add_subdirectory(gameServer) |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
176 |
else(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
177 |
set(HAVE_NETSERVER false) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
178 |
endif(WITH_SERVER) |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
179 |
|
2239
d7b5c65f7544
move C and C++ optimization flags in the main CMakeLists.txt
koda
parents:
2219
diff
changeset
|
180 |
|
223 | 181 |
add_subdirectory(bin) |
184 | 182 |
add_subdirectory(QTfrontend) |
183 |
add_subdirectory(hedgewars) |
|
184 |
add_subdirectory(share) |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
2203
diff
changeset
|
185 |
add_subdirectory(tools) |
2812 | 186 |
add_subdirectory(misc/liblua) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
187 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
188 |
# CPack vars |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
189 |
|
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
190 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 191 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 192 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
193 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 194 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
195 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 196 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 197 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 198 |
|
199 |
if(WIN32 AND NOT UNIX) |
|
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
200 |
set(CPACK_NSIS_DISPLAY_NAME ${CPACK_PACKAGE_DESCRIPTION_SUMMARY}) |
184 | 201 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
202 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
203 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
1159 | 204 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
205 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
3301 | 206 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
184 | 207 |
else(WIN32 AND NOT UNIX) |
208 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
|
209 |
endif(WIN32 AND NOT UNIX) |
|
210 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
211 |
set(CPACK_SOURCE_IGNORE_FILES |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
212 |
"~" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
213 |
"\\\\.svn" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
214 |
"\\\\.exe$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
215 |
"\\\\.a$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
216 |
"\\\\.dll$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
217 |
"\\\\.xcf$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
218 |
"\\\\.cxx$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
219 |
"\\\\.db$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
220 |
"\\\\.dof$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
221 |
"\\\\.layout$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
222 |
"\\\\.zip$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
223 |
"\\\\.gz$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
224 |
"\\\\.bz2$" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
225 |
"\\\\.tmp$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
226 |
"\\\\.core$" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
227 |
"\\\\.sh$" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
228 |
"\\\\.ppu$" |
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
229 |
"\\\\.o$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
230 |
"Makefile" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
231 |
"Doxyfile" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
232 |
"CMakeFiles" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
233 |
"debug" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
234 |
"release$" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
235 |
"Debug$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
236 |
"Release$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
237 |
"proto.inc$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
238 |
"hwconsts.cpp$" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
239 |
"playlist.inc$" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
240 |
"CPack" |
3353
a767dd3786b5
OpenAL makes a comeback! (might require some cleanup)
koda
parents:
3345
diff
changeset
|
241 |
"^${PROJECT_SOURCE_DIR}/misc/openalbridge" |
2689 | 242 |
"^${PROJECT_SOURCE_DIR}/cocoaTouch" |
727
da975a75af09
Fix all issues with make package_source on my system
unc0rr
parents:
722
diff
changeset
|
243 |
"^${PROJECT_SOURCE_DIR}/bin/[a-z]" |
2556 | 244 |
"^${PROJECT_SOURCE_DIR}/tools/templates" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
245 |
"^${PROJECT_SOURCE_DIR}/doc" |
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
246 |
"^${PROJECT_SOURCE_DIR}/templates" |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
247 |
"^${PROJECT_SOURCE_DIR}/Graphics" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
248 |
"^${PROJECT_SOURCE_DIR}/realtest" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
249 |
"^${PROJECT_SOURCE_DIR}/tmp" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
250 |
"^${PROJECT_SOURCE_DIR}/utils" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
251 |
"^${PROJECT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
252 |
"^${PROJECT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
253 |
"^${PROJECT_SOURCE_DIR}/install_manifest.txt" |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
254 |
"^${PROJECT_SOURCE_DIR}/CMakeCache.txt" |
722
993faebbe546
- Use shotgun training as more attractive than the second one with bazooka
unc0rr
parents:
720
diff
changeset
|
255 |
"^${PROJECT_SOURCE_DIR}/hedgewars\\\\." |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
256 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
257 |
|
184 | 258 |
include(CPack) |