You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
498 B

16 years ago
16 years ago
  1. /* Date for kicad build version */
  2. #include "fctsys.h"
  3. #ifdef HAVE_SVN_VERSION
  4. #include "version.h" // define the KICAD_BUILD_VERSION
  5. #endif
  6. #ifndef KICAD_BUILD_VERSION
  7. #define KICAD_BUILD_VERSION "(2010-01-08)"
  8. #endif
  9. #define VERSION_STABILITY "unstable"
  10. /** Function GetBuildVersion()
  11. * Return the build date and version
  12. */
  13. wxString GetBuildVersion()
  14. {
  15. static wxString msg;
  16. msg.Printf( wxT("%s-%s"),
  17. wxT( KICAD_BUILD_VERSION ), wxT(VERSION_STABILITY));
  18. return msg;
  19. }