Belle II Software  release-08-01-10
Version.cc
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 #include "daq/slc/version/Version.h"
9 
10 //define if DEF_DAQ_SLC_VERSION is not set at compilation using `g++ -DDEF_DAQ_SLC_VERSION=\"version_whatever\"
11 #ifndef DEF_DAQ_SLC_VERSION
12 //use default "NOT_SET"
13 #define DEF_DAQ_SLC_VERSION "NOT_SET"
14 #endif
15 
16 const std::string DAQ_SLC_VERSION::DAQ_SLC_VERSION(DEF_DAQ_SLC_VERSION);
17