File: VersionInfoBld.cpp.in

package info (click to toggle)
bespokesynth 1.3.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,716 kB
  • sloc: cpp: 117,136; ansic: 18,752; python: 593; xml: 74; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "VersionInfo.h"

// This file will get replaced with the CMAKE variables as below at build time
namespace Bespoke
{

    const char* GIT_BRANCH = "@GIT_BRANCH@";
    const char* GIT_HASH = "@GIT_COMMIT_HASH@";
    const char* BUILD_ARCH = "@BESPOKE_BUILD_ARCH@";
    const char* BUILD_DATE = "@BESPOKE_BUILD_DATE@";
    const char* BUILD_TIME = "@BESPOKE_BUILD_TIME@";

}