mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
777953923e
Repo: https://github.com/libjpeg-turbo/libjpeg-turbo.git Tag: 1.5.3 excluded libjpeg-turbo files: - bmp.c - bmp.h - cderror.h - cdjpeg.c - cdjpeg.h - cjpeg.c - djpeg.c - example.c - jcstest.c - jdatadst-tj.c - jdatasrc-tj.c - jpegtran.c - rdbmp.c - rdcolmap.c - rdgif.c - rdjpgcom.c - rdppm.c - rdrle.c - rdswitch.c - rdtarga.c - tjbench.c - tjunittest.c - tjutil.c - tjutil.h - transupp.c - transupp.h - turbojpeg-jni.c - turbojpeg.c - turbojpeg.h - wrbmp.c - wrgif.c - wrjpgcom.c - wrppm.c - wrrle.c - wrtarga.c
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
|