XWin headers and libraries (devel) path in Cygwin

0

What is the path of the XWin headers and libraries (Devel) in Cygwin?

Ken Ingram

Posted 2014-02-20T12:06:11.700

Reputation: 127

Answers

0

Assuming you are developing an X11 client using libX11, headers are in /usr/include/X11 and libraries in /usr/lib

You will need to have the libX11-devel package installed.

The portable way to discover this is using pkg-config, e.g. pkg-config --cflags --libs x11

jturney

Posted 2014-02-20T12:06:11.700

Reputation: 101