blob: 1d43a9f11de5c52deb1147da362879c8370d713f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | // generates export.hpp for each module from compat/linkage.hpp
#pragma once
#include "compat/linkage-macros.hpp"
#ifdef BUILD_VIDEO_OPENCV
#   define OTR_VIDEO_OPENCV_EXPORT OTR_GENERIC_EXPORT
#else
#   define OTR_VIDEO_OPENCV_EXPORT OTR_GENERIC_IMPORT
#endif
 |