Compile OpenCV with GCC visibility set to hidden

This commit is contained in:
Andrey Kamaev
2013-04-18 10:30:15 +04:00
committed by Andrey Pavlenko
parent 8130d92602
commit b8ed00bd64
16 changed files with 42 additions and 85 deletions

View File

@@ -1,16 +1,7 @@
#ifndef __OPENCV_GTESTCV_HPP__
#define __OPENCV_GTESTCV_HPP__
#ifdef HAVE_CVCONFIG_H
# include "cvconfig.h"
#endif
#ifndef GTEST_CREATE_SHARED_LIBRARY
#ifdef BUILD_SHARED_LIBS
#define GTEST_LINKED_AS_SHARED_LIBRARY 1
#endif
#endif
#include "opencv2/core/cvdef.h"
#include <stdarg.h> // for va_list
#ifdef _MSC_VER

View File

@@ -1912,19 +1912,7 @@ using ::std::tuple_size;
#endif // GTEST_HAS_SEH
#ifdef _MSC_VER
# if GTEST_LINKED_AS_SHARED_LIBRARY
# define GTEST_API_ __declspec(dllimport)
# elif GTEST_CREATE_SHARED_LIBRARY
# define GTEST_API_ __declspec(dllexport)
# endif
#endif // _MSC_VER
#ifndef GTEST_API_
# define GTEST_API_
#endif
#define GTEST_API_ CV_EXPORTS
#ifdef __GNUC__
// Ask the compiler to never inline a given function.

View File

@@ -1,16 +1,6 @@
#ifndef __OPENCV_TS_PERF_HPP__
#define __OPENCV_TS_PERF_HPP__
#ifdef HAVE_CVCONFIG_H
# include "cvconfig.h"
#endif
#ifndef GTEST_CREATE_SHARED_LIBRARY
# ifdef BUILD_SHARED_LIBS
# define GTEST_LINKED_AS_SHARED_LIBRARY 1
# endif
#endif
#include "opencv2/core.hpp"
#include "ts_gtest.h"