-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmvsim_version.h.in
21 lines (17 loc) · 1.01 KB
/
mvsim_version.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*+-------------------------------------------------------------------------+
| MultiVehicle simulator (libmvsim) |
| |
| Copyright (C) 2014-2024 Jose Luis Blanco Claraco |
| Copyright (C) 2017 Borys Tymchenko (Odessa Polytechnic University) |
| Distributed under 3-clause BSD License |
| See COPYING |
+-------------------------------------------------------------------------+ */
#pragma once
// clang-format off
#define MVSIM_MAJOR_VERSION @MVSIM_MAJOR_VERSION@
#define MVSIM_MINOR_VERSION @MVSIM_MINOR_VERSION@
#define MVSIM_PATCH_VERSION @MVSIM_PATCH_VERSION@
#define MVSIM_STR_EXP(__A) #__A
#define MVSIM_STR(__A) MVSIM_STR_EXP(__A)
#define MVSIM_VERSION MVSIM_STR(MVSIM_MAJOR_VERSION) "." MVSIM_STR(MVSIM_MINOR_VERSION) "." MVSIM_STR(MVSIM_PATCH_VERSION)
// clang-format on