disabled samples with driver api

This commit is contained in:
Vladislav Vinogradov
2013-06-03 14:01:04 +04:00
parent e9c298b784
commit ff28bf831f
3 changed files with 22 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/gpu/gpu.hpp"
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB) || defined(__arm__)
int main()
{
@@ -25,6 +25,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;
}