perf_precomp.hpp 560 Bytes
Newer Older
1 2
#ifdef __GNUC__
#  pragma GCC diagnostic ignored "-Wmissing-declarations"
Andrey Kamaev's avatar
Andrey Kamaev committed
3
#  if defined __clang__ || defined __APPLE__
4 5 6
#    pragma GCC diagnostic ignored "-Wmissing-prototypes"
#    pragma GCC diagnostic ignored "-Wextra"
#  endif
7 8
#endif

9 10 11
#ifndef __OPENCV_VIDEO_PRECOMP_HPP__
#define __OPENCV_VIDEO_PRECOMP_HPP__

12
#include "opencv2/ts.hpp"
13 14
#include <opencv2/imgproc.hpp>
#include <opencv2/video.hpp>
15
#include <opencv2/imgcodecs.hpp>
16

17
#ifdef GTEST_CREATE_SHARED_LIBRARY
18 19 20 21
#error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
#endif

#endif