Re: [Plib-devel] [PATCH] examples/src/pui/{combobox.cxx => widget_test.cxx}
Brought to you by:
sjbaker
From: Melchior F. <mf...@us...> - 2009-01-29 22:42:38
|
* Melchior FRANZ -- Thursday 29 January 2009: > Could you replace combobox.cxx by the attached file and rename > it to widget_test.cxx (or something else appropriate)? Of course, > you'd also have to change all occurrences in the build files > (Makefile.am etc.) as well. ^^^^^^^^^^^ Thanks for renaming/committing. Can you please adapt the Unix part of the build system, too? :-) m. diff --git a/examples/src/pui/Makefile.am b/examples/src/pui/Makefile.am index e8a5721..8044be0 100644 --- a/examples/src/pui/Makefile.am +++ b/examples/src/pui/Makefile.am @@ -2,3 +2,3 @@ if BUILD_PUI -noinst_PROGRAMS = simple complex widget_list PointPicker combobox +noinst_PROGRAMS = simple complex widget_list PointPicker widget_test @@ -8,3 +8,3 @@ complex_SOURCES = complex.cxx -combobox_SOURCES = combobox.cxx +widget_test_SOURCES = widget_test.cxx @@ -18,3 +18,3 @@ complex_LDADD = -lplibpuaux -lplibpu -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) $( -combobox_LDADD = -lplibpuaux -lplibpu -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) +widget_test_LDADD = -lplibpuaux -lplibpu -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) |