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.

29 lines
625 B

  1. /* Date for kicad build version */
  2. #ifndef KICAD_BUILD_VERSION
  3. #define KICAD_BUILD_VERSION
  4. COMMON_GLOBL wxString g_BuildVersion
  5. #ifdef EDA_BASE
  6. # ifdef HAVE_SVN_VERSION
  7. # include "config.h"
  8. (wxT(KICAD_SVN_VERSION))
  9. # else
  10. (wxT("(20090201-unstable)")) /* main program version */
  11. # endif
  12. #endif
  13. ;
  14. COMMON_GLOBL wxString g_BuildAboutVersion
  15. #ifdef EDA_BASE
  16. # if defined(HAVE_SVN_VERSION) || defined(HAVE_SVN_REVISION)
  17. # include "config.h"
  18. (wxT(KICAD_ABOUT_VERSION))
  19. # else
  20. (wxT("(20090201-unstable)")) /* svn date & rev (normally overridden) */
  21. # endif
  22. #endif
  23. ;
  24. #endif // KICAD_BUILD_VERSION