I use CodeBlocks in Mac to compile my source code:
#include <X11/Xlib.h>
Display *display;
int main()
{
display = XOpenDisplay(NULL);
XCloseDisplay(display);
return 0;
}
Compiling the source code is successfull, but linking to X11 is not successfull. How to I solve this problem? Where is libX11 in Mac?
Thanks.