1/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */ 2 3/* 4 * Do NOT include this file directly, but include the wrapper instead. 5 * This prevents wastefull recompiling. 6 */ 7 8#ifndef VERSION_GENERATED_H 9#define VERSION_GENERATED_H 10 11/// examples: "83.0" "83.0.1-13-g1234567 develop" 12static const char* SPRING_VERSION_ENGINE = "@SPRING_VERSION_ENGINE@"; 13 14/// examples: "83" 15static const char* SPRING_VERSION_ENGINE_MAJOR = "@SPRING_VERSION_ENGINE_MAJOR@"; 16 17/// examples: "0" 18static const char* SPRING_VERSION_ENGINE_PATCH_SET = "@SPRING_VERSION_ENGINE_PATCH_SET@"; 19 20/// examples: "13" 21static const char* SPRING_VERSION_ENGINE_COMMITS = "@SPRING_VERSION_ENGINE_COMMITS@"; 22 23/// examples: "1234567" 24static const char* SPRING_VERSION_ENGINE_HASH = "@SPRING_VERSION_ENGINE_HASH@"; 25 26/// examples: "develop" 27static const char* SPRING_VERSION_ENGINE_BRANCH = "@SPRING_VERSION_ENGINE_BRANCH@"; 28 29/// examples: "what a splendid day, isn't it?" 30static const char* SPRING_VERSION_ENGINE_ADDITIONAL = "@SPRING_VERSION_ENGINE_ADDITIONAL@"; 31 32/// examples: true, false 33static bool SPRING_VERSION_ENGINE_RELEASE = @SPRING_VERSION_ENGINE_RELEASE@; 34 35#endif // VERSION_GENERATED_H 36 37 38 39 40