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
7ec4b59f
Commit
7ec4b59f
authored
Jun 29, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added #include "cvconfig.h" to make TBB and other 3rd party libs work correctly
parent
10b5a517
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
54 additions
and
14 deletions
+54
-14
precomp.hpp
modules/calib3d/src/precomp.hpp
+5
-1
precomp.hpp
modules/contrib/src/precomp.hpp
+9
-1
precomp.hpp
modules/core/src/precomp.hpp
+6
-2
precomp.hpp
modules/features2d/src/precomp.hpp
+5
-1
precomp.hpp
modules/imgproc/src/precomp.hpp
+6
-2
precomp.hpp
modules/legacy/src/precomp.hpp
+7
-3
precomp.hpp
modules/ml/src/precomp.hpp
+6
-2
precomp.hpp
modules/objdetect/src/precomp.hpp
+5
-1
precomp.hpp
modules/video/src/precomp.hpp
+5
-1
No files found.
modules/calib3d/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -43,7 +43,11 @@
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/calib3d/calib3d.hpp"
...
...
modules/contrib/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -44,7 +44,15 @@
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/contrib/contrib.hpp"
...
...
modules/core/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -40,14 +40,18 @@
//
//M*/
#ifndef _
CXCORE_INTERNAL_H
_
#define _
CXCORE_INTERNAL_H
_
#ifndef _
_OPENCV_PRECOMP_H_
_
#define _
_OPENCV_PRECOMP_H_
_
#if defined _MSC_VER && _MSC_VER >= 1200
// disable warnings related to inline functions
#pragma warning( disable: 4251 4711 4710 4514 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/core/core.hpp"
#include "opencv2/core/core_c.h"
#include "opencv2/core/internal.hpp"
...
...
modules/features2d/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -44,7 +44,11 @@
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/features2d/features2d.hpp"
...
...
modules/imgproc/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -40,14 +40,18 @@
//
//M*/
#ifndef _
OPENCV_PRECOMP_HPP
_
#define _
OPENCV_PRECOMP_HPP
_
#ifndef _
_OPENCV_PRECOMP_H_
_
#define _
_OPENCV_PRECOMP_H_
_
#if defined _MSC_VER && _MSC_VER >= 1200
// disable warnings related to inline functions
#pragma warning( disable: 4251 4711 4710 4514 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/core/internal.hpp"
...
...
modules/legacy/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -38,11 +38,15 @@
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#ifndef __OPENCV_
LEGACY_
PRECOMP_H__
#define __OPENCV_
LEGACY_
PRECOMP_H__
#ifndef __OPENCV_PRECOMP_H__
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/legacy/legacy.hpp"
...
...
modules/ml/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -38,13 +38,17 @@
//
//M*/
#ifndef __
ML_INTERNAL
_H__
#define __
ML_INTERNAL
_H__
#ifndef __
OPENCV_PRECOMP
_H__
#define __
OPENCV_PRECOMP
_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4514 4710 4711 4710 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/ml/ml.hpp"
#include "opencv2/core/core_c.h"
#include "opencv2/core/internal.hpp"
...
...
modules/objdetect/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -44,7 +44,11 @@
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/objdetect/objdetect.hpp"
...
...
modules/video/src/precomp.hpp
View file @
7ec4b59f
...
...
@@ -44,7 +44,11 @@
#define __OPENCV_PRECOMP_H__
#if _MSC_VER >= 1200
#pragma warning( disable: 4251 4710 4711 4514 4996 )
/* function AAA selected for automatic inline expansion */
#pragma warning( disable: 4251 4710 4711 4514 4996 )
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#include "opencv2/video/tracking.hpp"
...
...
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