mirror of
https://github.com/opencv/opencv.git
synced 2024-12-02 07:39:57 +08:00
14 lines
275 B
C
14 lines
275 B
C
|
#define VERSION "@VERSION@"
|
||
|
#define BUILD "@BUILD@"
|
||
|
#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
|
||
|
|
||
|
#ifndef INLINE
|
||
|
#if defined(__GNUC__)
|
||
|
#define INLINE inline __attribute__((always_inline))
|
||
|
#elif defined(_MSC_VER)
|
||
|
#define INLINE __forceinline
|
||
|
#else
|
||
|
#define INLINE
|
||
|
#endif
|
||
|
#endif
|