Now I feel pretty stupid. I am trying to do some things with xlib in Qt Creator.
My code is:
#include <QtCore/QCoreApplication> #include <X11/Xlib.h> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); Display *display = XOpenDisplay(NULL); return 0; }
Only one line of code and gives me:
/main.cpp:8: undefined reference to `XOpenDisplay'
It is defined in Xlib.h as
extern Display *XOpenDisplay( _Xconst char* );
I feel that I am missing something very basic.
source share