Belle II Software  release-05-01-25
Version.cc
1 #include "daq/slc/version/Version.h"
2 
3 //define if DEF_DAQ_SLC_VERSION is not set at compilation using `g++ -DDEF_DAQ_SLC_VERSION=\"version_whatever\"
4 #ifndef DEF_DAQ_SLC_VERSION
5 //use default "NOT_SET"
6 #define DEF_DAQ_SLC_VERSION "NOT_SET"
7 #endif
8 
9 const std::string DAQ_SLC_VERSION::DAQ_SLC_VERSION(DEF_DAQ_SLC_VERSION);
10