mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
added dummy symbol to flann to make OpenCV compile on Windows
This commit is contained in:
parent
24cb30fed5
commit
6767f1db9e
@ -46,6 +46,11 @@ public:
|
|||||||
FLANNException(const std::string& message) : std::runtime_error(message) { }
|
FLANNException(const std::string& message) : std::runtime_error(message) { }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if (defined WIN32 || defined _WIN32 || defined WINCE) && defined CVAPI_EXPORTS
|
||||||
|
__declspec(dllexport)
|
||||||
|
#endif
|
||||||
|
void dummyfunc();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,5 +28,4 @@
|
|||||||
|
|
||||||
#include "precomp.hpp"
|
#include "precomp.hpp"
|
||||||
|
|
||||||
|
void cvflann::dummyfunc() {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user