Go to the documentation of this file.
6 #ifndef ANYMAL_RBPRM_CONFIG_HH
7 # define ANYMAL_RBPRM_CONFIG_HH
10 # define ANYMAL_RBPRM_VERSION_UNKNOWN_TAG 0
11 # define ANYMAL_RBPRM_VERSION "4.15.1"
12 # define ANYMAL_RBPRM_MAJOR_VERSION 4
13 # define ANYMAL_RBPRM_MINOR_VERSION 15
14 # define ANYMAL_RBPRM_PATCH_VERSION 1
16 #define ANYMAL_RBPRM_VERSION_AT_LEAST(major, minor, patch) (ANYMAL_RBPRM_MAJOR_VERSION>major || (ANYMAL_RBPRM_MAJOR_VERSION>=major && \
17 (ANYMAL_RBPRM_MINOR_VERSION>minor || (ANYMAL_RBPRM_MINOR_VERSION>=minor && \
18 ANYMAL_RBPRM_PATCH_VERSION>=patch))))
20 #define ANYMAL_RBPRM_VERSION_AT_MOST(major, minor, patch) (ANYMAL_RBPRM_MAJOR_VERSION<major || (ANYMAL_RBPRM_MAJOR_VERSION<=major && \
21 (ANYMAL_RBPRM_MINOR_VERSION<minor || (ANYMAL_RBPRM_MINOR_VERSION<=minor && \
22 ANYMAL_RBPRM_PATCH_VERSION<=patch))))
34 # if defined _WIN32 || defined __CYGWIN__
36 # define ANYMAL_RBPRM_DLLIMPORT __declspec(dllimport)
37 # define ANYMAL_RBPRM_DLLEXPORT __declspec(dllexport)
38 # define ANYMAL_RBPRM_DLLLOCAL
42 # define ANYMAL_RBPRM_DLLIMPORT __attribute__ ((visibility("default")))
43 # define ANYMAL_RBPRM_DLLEXPORT __attribute__ ((visibility("default")))
44 # define ANYMAL_RBPRM_DLLLOCAL __attribute__ ((visibility("hidden")))
47 # define ANYMAL_RBPRM_DLLIMPORT
48 # define ANYMAL_RBPRM_DLLEXPORT
49 # define ANYMAL_RBPRM_DLLLOCAL
53 # ifdef ANYMAL_RBPRM_STATIC
56 # define ANYMAL_RBPRM_DLLAPI
57 # define ANYMAL_RBPRM_LOCAL
61 # ifdef anymal_rbprm_EXPORTS
62 # define ANYMAL_RBPRM_DLLAPI ANYMAL_RBPRM_DLLEXPORT
64 # define ANYMAL_RBPRM_DLLAPI ANYMAL_RBPRM_DLLIMPORT
66 # define ANYMAL_RBPRM_LOCAL ANYMAL_RBPRM_DLLLOCAL