Hi
I've successfully compiled the FLTK library using Microsoft Visual C++ 2013.
When attempting to compile this simple demo:
#include <FL/Fl.h>
#include <FL/Fl_Box.H>
#include <FL/Fl_Window.h>
int main(){
Fl_Window window(200, 200, "Window title");
Fl_Box box(0, 0, 200, 200, "Hello World");
window.show();
return Fl::run();
}
I get error C1083: Can't open include file 'X11/Xlocale.h', and X11/Xlib.h
The problem header file is; fl_utf8.h, it seems to have its defines mixed up.
How can I fix this, so that I can use the library?
Thanks for the guidance and help guys, I'll try that out …