repo.or.cz
/
kiteware-cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
CMake Nightly Date Stamp
[kiteware-cmake.git]
/
Tests
/
Cuda
/
WithC
/
main.c
blob
ed64427ce83d1cbabfedd0651bd37143338926f1
1
extern
int
use_cuda
(
void
);
2
3
#ifdef _WIN32
4
# include <windows.h>
5
#endif
6
7
int
main
(
void
)
8
{
9
#ifdef _WIN32
10
/* Use an API that requires CMake's "standard" C libraries. */
11
GetOpenFileName
(
NULL
);
12
#endif
13
return
use_cuda
();
14
}