Merge branch upstream/master

This commit is contained in:
filux 2014-01-25 21:13:12 +01:00
commit b91b5cffa2
4 changed files with 16 additions and 15 deletions

2
.gitignore vendored
View File

@ -8,6 +8,8 @@
Session.vim Session.vim
# KDevelop # KDevelop
*.kdev4 *.kdev4
# Meld
*.orig
## OSX ## OSX
Icon Icon

View File

@ -95,8 +95,10 @@ who made our development easy and straight forward.
To build the game simply invoke the build script: To build the game simply invoke the build script:
./build-mg.sh ../mk/linux/build-mg.sh
This script manually calls cmake with some optional parameters. Feel free to
examine it and build manually using cmake.
2.3 Installation 2.3 Installation

View File

@ -28,6 +28,9 @@ To build the game, the following tools and libraries must be present:
OR OR
* mingw32 * mingw32
* Experiemtnal Microsoft Visual C++ Express 2012 projects also exist in the vc2012
folder
* MegaGlest Windows 32 bit dependencies for building with VC++: * MegaGlest Windows 32 bit dependencies for building with VC++:
http://sourceforge.net/projects/megaglest/files/windows_deps.7z/download http://sourceforge.net/projects/megaglest/files/windows_deps.7z/download
OR OR
@ -55,15 +58,11 @@ Option A) (recommended) Automated build on the command line:
2. cd mk\windoze 2. cd mk\windoze
3. build-mg-2010.bat 3. build-mg-2010.bat (build-mg-2012.bat for vc 2012)
4. CopyWindowsRuntimeDlls_2010.bat 4. megaglest.exe --version
5. cd ..\..\data\glest_game 5. megaglest.exe
6. megaglest.exe --version
7. megaglest.exe
Option B) Using VC++ IDE: Option B) Using VC++ IDE:

View File

@ -100,13 +100,11 @@ These will produce archives in the release folder name:
megaglest-binary-* megaglest-binary-*
megaglest-standalone-data-* megaglest-standalone-data-*
To stamp a snapshot in svn for a release we use the following (substitute version #'s of course): To stamp a snapshot in git for a release we use the following
svn copy https://svn.code.sf.net/p/megaglest/code/trunk \ (substitute version #'s of course and shasum to be the commit shasum):
https://svn.code.sf.net/p/megaglest/code/tags/release-3.9.0 -m \
"Tagging the 3.9.0 release of MegaGlest" git tag 3.9.2 <shasum>
svn copy https://svn.code.sf.net/p/megaglest/code/trunk-data-source \ git push --tags
https://svn.code.sf.net/p/megaglest/code/tags/release-data-source-3.9.0 -m \
"Tagging the 3.9.0 release of MegaGlest"
Linux Installer(s): Linux Installer(s):
========================= =========================