You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In general the makefiles (and the project generator, qt creator project and vs wizard) will parse each line of addons.make by checking first if it's a valid path and if not by checking if it exists in OF/addons so any path relative from the project path and even absolute paths pointing to an addon folder will work.
If you are fully bought-in to git, you might even want to use submodules
cd OF/app/myProjects/someProject
mkdir addons; cd addons
git submodule add https://github.com/niceperson/cooladdon
Now people can checkout and build your project like so
git clone **--recursive** https://github.com/myPerson/myProject
cd myProject
make