Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
X11
/
X11.c
blob: 9f002f6a2b03a771bc47c806b36927d717766c11 [
file
]
#include
"stdio.h"
#ifdef
CMAKE_HAS_X
# include <X11/Xlib.h>
# include <X11/Xutil.h>
int
main
(
void
)
{
printf
(
"There is X on this computer\n"
);
return
0
;
}
#else
int
main
(
void
)
{
printf
(
"No X on this computer\n"
);
return
0
;
}
#endif