Merge pull request #975 from SpecLad:merge-2.4

This commit is contained in:
Roman Donchenko
2013-06-11 17:28:26 +04:00
committed by OpenCV Buildbot
31 changed files with 435 additions and 444 deletions

View File

@@ -25,7 +25,7 @@
# endif
#endif
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB) || defined(__arm__)
int main()
{
@@ -37,6 +37,10 @@ int main()
std::cout << "TBB support is required (CMake key 'WITH_TBB' must be true).\n";
#endif
#if defined(__arm__)
std::cout << "Unsupported for ARM CUDA library." << std::endl;
#endif
return 0;
}