Add basic example that is as simple as possible

This commit is contained in:
Krisjanis Rijnieks
2018-03-31 01:20:10 +02:00
parent 6d2b224bea
commit 9675a889ab
22 changed files with 5080 additions and 0 deletions

13
example_basic/Makefile Normal file
View File

@@ -0,0 +1,13 @@
# Attempt to load a config.make file.
# If none is found, project defaults in config.project.make will be used.
ifneq ($(wildcard config.make),)
include config.make
endif
# make sure the the OF_ROOT location is defined
ifndef OF_ROOT
OF_ROOT=$(realpath ../../..)
endif
# call the project makefile!
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk