asdfg
asdfg

Reputation: 1

Visual Studio is unable to open include files

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

Answers (1)

zeromus
zeromus

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

Related Questions