Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / X11 / X11.c
blobb802ed8b9bf4fdcce808479ff8e3e132bbb5ce31
1 #include "stdio.h"
2 #ifdef CMAKE_HAS_X
4 #include <X11/Xlib.h>
5 #include <X11/Xutil.h>
7 int main()
9 printf("There is X on this computer\n");
10 return 0;
13 #else
15 int main()
17 printf("No X on this computer\n");
18 return 0;
21 #endif