version.h 1.2 KB

123456789101112131415161718192021222324252627282930
  1. // Filename: version.h
  2. // Created by:
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://etc.cmu.edu/panda3d/docs/license/ .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. /* instead of this stuff probably want to use link.exe /VERSION flag instead, which might make auto-incrementing build number a little easier */
  19. #define PANDA_VERSION_MAJOR 0
  20. #define PANDA_VERSION_MINOR 0
  21. #define PANDA_VERSION_BUILDSUBVERSION 0
  22. #define PANDA_VERSION_BUILDSUBSUBVERSION 1
  23. #define PANDA_VERSION_MAJOR_STR "0"
  24. #define PANDA_VERSION_MINOR_STR "0"
  25. #define PANDA_VERSION_BUILDSUBVERSION_STR "0"
  26. #define PANDA_VERSION_BUILDSUBSUBVERSION_STR "1"