Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7efb2491
Commit
7efb2491
authored
May 22, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
May 22, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #887 from LeszekSwirski:fix-glinkedptrmutex
parents
b5c01368
0e8c2b03
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
1 deletion
+29
-1
ts.hpp
modules/ts/include/opencv2/ts.hpp
+8
-0
ts_gtest.h
modules/ts/include/opencv2/ts/ts_gtest.h
+13
-1
ts_perf.hpp
modules/ts/include/opencv2/ts/ts_perf.hpp
+8
-0
No files found.
modules/ts/include/opencv2/ts.hpp
View file @
7efb2491
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
#include "opencv2/core/cvdef.h"
#include "opencv2/core/cvdef.h"
#include <stdarg.h> // for va_list
#include <stdarg.h> // for va_list
#include "cvconfig.h"
#ifndef GTEST_CREATE_SHARED_LIBRARY
#ifdef BUILD_SHARED_LIBS
#define GTEST_LINKED_AS_SHARED_LIBRARY 1
#endif
#endif
#ifdef _MSC_VER
#ifdef _MSC_VER
#pragma warning( disable: 4127 )
#pragma warning( disable: 4127 )
#endif
#endif
...
...
modules/ts/include/opencv2/ts/ts_gtest.h
View file @
7efb2491
...
@@ -1912,7 +1912,19 @@ using ::std::tuple_size;
...
@@ -1912,7 +1912,19 @@ using ::std::tuple_size;
#endif // GTEST_HAS_SEH
#endif // GTEST_HAS_SEH
#define GTEST_API_ CV_EXPORTS
#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_ CV_EXPORTS
#endif
#ifdef __GNUC__
#ifdef __GNUC__
// Ask the compiler to never inline a given function.
// Ask the compiler to never inline a given function.
...
...
modules/ts/include/opencv2/ts/ts_perf.hpp
View file @
7efb2491
#ifndef __OPENCV_TS_PERF_HPP__
#ifndef __OPENCV_TS_PERF_HPP__
#define __OPENCV_TS_PERF_HPP__
#define __OPENCV_TS_PERF_HPP__
#include "cvconfig.h"
#ifndef GTEST_CREATE_SHARED_LIBRARY
# ifdef BUILD_SHARED_LIBS
# define GTEST_LINKED_AS_SHARED_LIBRARY 1
# endif
#endif
#include "opencv2/core.hpp"
#include "opencv2/core.hpp"
#include "ts_gtest.h"
#include "ts_gtest.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment