mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-24 04:01:12 +00:00
13 lines
268 B
C
13 lines
268 B
C
#define VERSION "@VERSION@"
|
|
#define BUILD "@BUILD@"
|
|
#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
|
|
|
|
#ifndef INLINE
|
|
#if defined(__GNUC__)
|
|
#define INLINE __attribute__((always_inline))
|
|
#elif defined(_MSC_VER)
|
|
#define INLINE __forceinline
|
|
#else
|
|
#define INLINE
|
|
#endif
|
|
#endif
|