File: VersionInfo.h

package info (click to toggle)
bespokesynth 1.3.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 44,592 kB
  • sloc: cpp: 117,136; ansic: 18,752; python: 593; xml: 74; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 682 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <string>

namespace Bespoke
{
   // These are generated at CMake time and are VersionInfo.cpp.in
   extern const char* APP_NAME; // The application name. Taken from the top-level CMake project name.
   extern const char* VERSION; // This will be the same string as Juce::Application::getApplicationVersion()
   extern const char* PYTHON_VERSION; // The python version we compiled with
   extern const char* CMAKE_INSTALL_PREFIX;

   // These are generated at build time and are in VersionInfoBld.cpp.in
   extern const char* GIT_BRANCH;
   extern const char* GIT_HASH;
   extern const char* BUILD_ARCH;
   extern const char* BUILD_DATE;
   extern const char* BUILD_TIME;
}