diff options
author | Tony Theodore <tonyt@logyst.com> | 2011-05-24 12:38:13 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2011-05-24 12:38:13 (GMT) |
commit | 4cf9601e56117e3fb045a0325cc743884f7307b1 (patch) | |
tree | 05d7dbd1e48c55b26cfda4f1161bb464512cb8ae /src | |
parent | 94caa7482c293a74b3533bee27fbdd3d035f4eef (diff) | |
download | mxe-4cf9601e56117e3fb045a0325cc743884f7307b1.zip mxe-4cf9601e56117e3fb045a0325cc743884f7307b1.tar.gz mxe-4cf9601e56117e3fb045a0325cc743884f7307b1.tar.bz2 |
package fltk: add test program
Diffstat (limited to 'src')
-rw-r--r-- | src/fltk-test.cpp | 20 | ||||
-rw-r--r-- | src/fltk.mk | 6 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/fltk-test.cpp b/src/fltk-test.cpp new file mode 100644 index 0000000..cf154c5 --- /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 <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(); +}
\ No newline at end of file diff --git a/src/fltk.mk b/src/fltk.mk index 0d68280..64720a3 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 |