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

@@ -17,12 +17,21 @@ using namespace std;
using namespace cv;
#if !defined(HAVE_CUDA)
#if !defined(HAVE_CUDA) || defined(__arm__)
int main( int, const char** )
{
cout << "Please compile the library with CUDA support" << endl;
return -1;
#if !defined(HAVE_CUDA)
std::cout << "CUDA support is required (CMake key 'WITH_CUDA' must be true)." << std::endl;
#endif
#if defined(__arm__)
std::cout << "Unsupported for ARM CUDA library." << std::endl;
#endif
return 0;
}
#else