blob: 15ec21c86d92690591454d6b8874d6e9b7437a14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Copyright 2022 Axel Huebl
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#ifndef WARPX_VERSION_H_
#define WARPX_VERSION_H_
#ifndef WARPX_GIT_VERSION
# define WARPX_GIT_VERSION "@WarpX_GIT_VERSION@"
#endif
#ifndef PICSAR_GIT_VERSION
# define PICSAR_GIT_VERSION "@PXRMP_QED_GIT_VERSION@"
#endif
#endif // WARPX_VERSION_H_
|