summaryrefslogtreecommitdiff
path: root/bin10
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-05-17 21:39:31 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-05-17 21:39:31 +0000
commit463294e14641b2e3935f681de4e815b567ed5b01 (patch)
tree8f14ffa881a5434c71f590431890eb9fc6b57cba /bin10
parentf1dfd934eeaf02e8315df337cd64eaf1ab2d4004 (diff)
version makers
git-svn-id: http://svn.miranda-ng.org/main/trunk@31 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'bin10')
-rw-r--r--bin10/build.no1
-rw-r--r--bin10/m_version.h.in29
-rw-r--r--bin10/make_ver.bat24
3 files changed, 54 insertions, 0 deletions
diff --git a/bin10/build.no b/bin10/build.no
new file mode 100644
index 0000000000..e6442bdc64
--- /dev/null
+++ b/bin10/build.no
@@ -0,0 +1 @@
+92 1 0 \ No newline at end of file
diff --git a/bin10/m_version.h.in b/bin10/m_version.h.in
new file mode 100644
index 0000000000..8412e357e4
--- /dev/null
+++ b/bin10/m_version.h.in
@@ -0,0 +1,29 @@
+/*
+
+Miranda IM: the free IM client for Microsoft* Windows*
+
+Copyright 2000-2010 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
+listed in contributors.txt.
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+#ifndef M_VERSION_H__
+#define M_VERSION_H__
+
+#ifndef MIRANDA_MAKE_VERSION
+#define MIRANDA_MAKE_VERSION(a,b,c,d) (((((DWORD)(a))&0xFF)<<24)|((((DWORD)(b))&0xFF)<<16)|((((DWORD)(c))&0xFF)<<8)|(((DWORD)(d))&0xFF))
+#endif
+
diff --git a/bin10/make_ver.bat b/bin10/make_ver.bat
new file mode 100644
index 0000000000..fae2c806ec
--- /dev/null
+++ b/bin10/make_ver.bat
@@ -0,0 +1,24 @@
+@echo off
+
+for /F "tokens=1,2" %%i in ('svn info miranda32.sln') do call :AddBuild %%i %%j
+goto :eof
+
+:AddBuild
+if (%1) == (Revision:) (
+ for /F "tokens=1,2,3 delims= " %%i in (build.no) do call :WriteVer %%i %%j %2
+ )
+
+goto :eof
+
+:WriteVer
+copy m_version.h.in ..\include\m_version.h
+
+echo #define MIRANDA_VERSION_FILEVERSION 0,%1,%2,%3 >>..\include\m_version.h
+echo #define MIRANDA_VERSION_STRING "0.%1.%2.%3" >>..\include\m_version.h
+echo #define MIRANDA_VERSION_DISPLAY "0.%1.%2 alpha build #%3" >>..\include\m_version.h
+echo #define MIRANDA_VERSION_DWORD MIRANDA_MAKE_VERSION(0, %1, %2, %3) >>..\include\m_version.h
+echo #define MIRANDA_VERSION_CORE MIRANDA_MAKE_VERSION(0, %1, %2, 0) >>..\include\m_version.h
+echo #define MIRANDA_VERSION_CORE_STRING "0.%1.%2.0" >>..\include\m_version.h
+echo. >>..\include\m_version.h
+echo #endif // M_VERSION_H__ >>..\include\m_version.h
+goto :eof