mirror of
https://github.com/opencv/opencv.git
synced 2024-12-05 01:39:13 +08:00
21 lines
332 B
C++
21 lines
332 B
C++
#include "perf_precomp.hpp"
|
|
|
|
#ifdef HAVE_CUDA
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
perf::TestBase::Init(argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|
|
#else
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
printf("OpenCV was built without CUDA support\n");
|
|
return 0;
|
|
}
|
|
|
|
#endif
|