DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1// DUNE DAQ modification notice:
2// This file has been modified from the original ATLAS dbe source for the DUNE DAQ project.
3// Fork baseline commit: dbe-02-12-17 (2022-05-12).
4// Renamed since fork: yes (from dbe/version.h to include/dbe/version.hpp).
5
6/************************************************************
7 * version.h
8 *
9 * Created on: Jun 9, 2016
10 * Author: Leonidas Georgopoulos
11 ************************************************************/
12
13#ifndef DBE_VERSION_H_
14#define DBE_VERSION_H_
15
16#define xstrexp(s) strexp(s)
17#define strexp(s) #s
18
19#ifdef DBE__VERSION_INFO
20#define dbe_compiled_version xstrexp(DBE__VERSION_INFO)
21#else
22#define dbe_compiled_version "compiled without version information"
23#endif
24
25#ifdef DBE__COMMIT_INFO
26#define dbe_compiled_commit xstrexp(DBE__COMMIT_INFO)
27#else
28#define dbe_compiled_commit "compiled without commit information"
29#endif
30
31
32#endif /* DBE_VERSION_H_ */