Hi, I have a lot of Bela projects and a bunch of files that exists in all projects. I would be nice with an easy way to make the system build cpp's located in custom folders, so that they are shared between projects...
I know I could place my files in ~/Bela/core, but that seems a bit messy. Could there be a command line option like:
make PROJECTS=theProject ADD_SOURCES_IN=./projects/otherProject/commonSouces ./user/moreSources
Such that the files in the specified folders are build and linked correctly ?
Could be the same make rules as for normal project files, but with user specified folder(s)...
What I would like to do is to have a project where I develop and test the common files. In that project, all the files I'd like to be shared are in a sub-folder. I would then like to specify from other projects to use the files in that folder. I can include with CPPFLAGS=I./projects/otherProject/commonSources
but I cant make it compile and link without making a custom makefile... or can I ?
At least I'd like to...
I like the idea of being able to edit the shared lib in the IDE, so that I can do it from any computer at any time with ease....
- Hjalte