1/*
2 * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __TFM_VERSION_H__
9#define __TFM_VERSION_H__
10
11/*
12 * Defines for TFM version.
13 */
14#cmakedefine TFM_VERSION        @TFM_VERSION@
15#cmakedefine TFM_VERSION_FULL   @TFM_VERSION_FULL@
16
17#define VERSTR(x)          #x
18#define VERCON(x)          VERSTR(x)
19
20#define VERSION_STR        VERCON(TFM_VERSION)
21#define VERSION_FULLSTR    VERCON(TFM_VERSION_FULL)
22
23/*
24 * Define for the build timestamp string
25 */
26#cmakedefine BUILD_TIMESTAMP "@BUILD_TIMESTAMP@"
27
28#endif /* __TFM_VERSION_H__ */
29