Move the uGFX based tools into a sub-directory of demos so they can be compiled using the standard build system facility for building demo's.

ugfx_release_2.6
inmarket 2014-11-14 09:10:59 +10:00
parent 6bc091035a
commit 93c9ebaa79
10 changed files with 12 additions and 1 deletions

View File

@ -2,7 +2,7 @@ This folder contains a few demos which explain how to use the library.
Only the main files are contained. No compile-able projects
All demos and examples stand under the BSD license as declared below and
Most demos and examples stand under the BSD license as declared below and
within each file:
/*
@ -34,3 +34,5 @@ within each file:
*/
Files under the 3rdparty directory are licensed as per the original contributor.
Files under the tools directory are licensed with either the uGFX license or the BSD
license - see each tool demo source code for its specific license.

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/touch_driver_test
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/touch_raw_readings
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/uGFXnetDisplay
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c