Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
Cuda
/
WithC
/
main.c
blob: ed64427ce83d1cbabfedd0651bd37143338926f1 [
file
]
extern
int
use_cuda
(
void
);
#ifdef
_WIN32
# include <windows.h>
#endif
int
main
(
void
)
{
#ifdef
_WIN32
/* Use an API that requires CMake's "standard" C libraries. */
GetOpenFileName
(
NULL
);
#endif
return
use_cuda
();
}