Reputation: 1
error C1083: Cannot open include file: 'X11/Intrinsic.h': No such file or directory
IntelliSense: cannot open source file "X11/Intrinsic.h"
IntelliSense: cannot open source file "GL/glx.h"
#include <X11/Intrinsic.h> /* Display, Window */
#include <GL/glx.h> /* GLXContext */
Upvotes: 0
Views: 528
Reputation: 1667
You're trying to compile unix software in msvc. Give up.
You may be able to succeed using mingw or cygwin, but in this case it won't be easy since compiling desktop software (as this seems to be) is always much more complex.
Upvotes: 1