mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
15 lines
225 B
C
15 lines
225 B
C
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();
|
|
}
|