X11.c 235 B

123456789101112131415161718192021
  1. #include "stdio.h"
  2. #ifdef CMAKE_HAS_X
  3. #include <X11/Xlib.h>
  4. #include <X11/Xutil.h>
  5. int main()
  6. {
  7. printf("There is X on this computer\n");
  8. return 0;
  9. }
  10. #else
  11. int main()
  12. {
  13. printf("No X on this computer\n");
  14. return 0;
  15. }
  16. #endif