Panda3D
version.h
1 // Filename: version.h
2 // Created by:
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 /* instead of this stuff probably want to use link.exe /VERSION flag instead, which might make auto-incrementing build number a little easier */
16 
17 #define PANDA_VERSION_MAJOR 0
18 #define PANDA_VERSION_MINOR 0
19 #define PANDA_VERSION_BUILDSUBVERSION 0
20 #define PANDA_VERSION_BUILDSUBSUBVERSION 1
21 
22 #define PANDA_VERSION_MAJOR_STR "0"
23 #define PANDA_VERSION_MINOR_STR "0"
24 #define PANDA_VERSION_BUILDSUBVERSION_STR "0"
25 #define PANDA_VERSION_BUILDSUBSUBVERSION_STR "1"
26