Hi!
I’m on 007 from github, using eclipse.
In my project directory, I have a folder called “resources” with various tidbits, pdfs, but also sourcecode. The folder is successfully filtered out in the eclipse project setting (resource filters), but I think this has no impact on the error.
I exclude this folder in config.make like this:
EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj,resources"
but when I build my project, I get errors complaining about source files in the resources folder tree.
make all
Makefile:361: warning: overriding commands for target `clean'
Makefile:356: warning: ignoring old commands for target `clean'
make Release
make[1]: Entering directory `/media/windata/Visuals/Coding/openFrameworks/apps/myapps/switchboard'
compiling object for: resources/blubb/bla.cpp
with obvious errors later on.
So it seems that EXCLUDE_FROM_SOURCE is not really respected. What’s going wrong here?
the whole thing also works with fresh files from emptyexample, and in fact my program is nothing more at the moment…