2017-04-14 19:02:05 +02:00
|
|
|
extern int use_cuda(void);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2018-08-09 18:06:22 +02:00
|
|
|
# include <windows.h>
|
2017-04-14 19:02:05 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
/* Use an API that requires CMake's "standard" C libraries. */
|
|
|
|
GetOpenFileName(NULL);
|
|
|
|
#endif
|
|
|
|
return use_cuda();
|
|
|
|
}
|