package fltk: add test program

This commit is contained in:
Tony Theodore 2011-05-24 22:38:13 +10:00
parent 94caa7482c
commit 4cf9601e56
2 changed files with 26 additions and 0 deletions

20
src/fltk-test.cpp Normal file
View File

@ -0,0 +1,20 @@
/* This file is part of mingw-cross-env. */
/* See doc/index.html for further information. */
/* http://www.fltk.org/doc-1.3/basics.html */
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Box.H>
int main(int argc, char **argv)
{
Fl_Window *window = new Fl_Window(340,180);
Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
box->box(FL_UP_BOX);
box->labelfont(FL_BOLD+FL_ITALIC);
box->labelsize(36);
box->labeltype(FL_SHADOW_LABEL);
window->end();
window->show(argc, argv);
return Fl::run();
}

View File

@ -33,4 +33,10 @@ define $(PKG)_BUILD
# enable exceptions, because disabling them doesn't make any sense on PCs
$(SED) -i 's,-fno-exceptions,,' '$(1)/makeinclude'
$(MAKE) -C '$(1)' -j '$(JOBS)' install DIRS=src LIBCOMMAND='$(TARGET)-ar cr'
ln -sf $(PREFIX)/$(TARGET)/bin/fltk-config $(PREFIX)/bin/$(TARGET)-fltk-config
'$(TARGET)-g++' \
-W -Wall -Werror -pedantic -ansi \
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-fltk.exe' \
`$(TARGET)-fltk-config --cxxflags --ldstaticflags`
endef