fix: add ofxPiMapper src subdirs to include path for FboSource.h

This commit is contained in:
Timothy Hofland
2026-03-15 21:52:28 +01:00
parent 538043b7f2
commit 64c1f26000

View File

@ -226,6 +226,10 @@ for lib in "$OF_DIR/libs"/*/; do
OF_EXTRA_INCLUDES="$OF_EXTRA_INCLUDES -I$subdir"
done < <(find "$incdir" -type d)
done
# ofxPiMapper addon subdirectories (Sources/, Surfaces/, Textures/, etc.)
while IFS= read -r subdir; do
OF_EXTRA_INCLUDES="$OF_EXTRA_INCLUDES -I$subdir"
done < <(find "$ADDON_DIR/src" -type d)
make clean 2>/dev/null || true
make -j1 \