From 4cf9601e56117e3fb045a0325cc743884f7307b1 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Tue, 24 May 2011 22:38:13 +1000 Subject: [PATCH] package fltk: add test program --- src/fltk-test.cpp | 20 ++++++++++++++++++++ src/fltk.mk | 6 ++++++ 2 files changed, 26 insertions(+) create mode 100644 src/fltk-test.cpp diff --git a/src/fltk-test.cpp b/src/fltk-test.cpp new file mode 100644 index 00000000..cf154c5b --- /dev/null +++ b/src/fltk-test.cpp @@ -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 +#include +#include + +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(); +} \ No newline at end of file diff --git a/src/fltk.mk b/src/fltk.mk index 0d682806..64720a3a 100644 --- a/src/fltk.mk +++ b/src/fltk.mk @@ -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