├── .github └── workflows │ └── build_linux.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── addons.make ├── assets ├── logo.sketch └── logo.svg ├── bin └── data │ ├── Roboto-Regular.ttf │ └── fa-solid-900.ttf ├── config.make ├── docs ├── configure_project.png ├── install_addon.png ├── jsonInterface.md └── open_project.png ├── ofPackages.json ├── scripts ├── add_to_path.sh ├── fix_dylib.sh ├── install.sh ├── install_dependencies.sh ├── linux │ ├── install.sh │ └── package.sh ├── ofPackageManager.sh ├── osx │ ├── downloadAndAddToPath.sh │ ├── install.sh │ ├── package.sh │ └── sign.sh ├── package_release_osx.sh ├── test.sh ├── test │ └── index.js └── windows │ └── install.sh ├── src ├── defines.h ├── generators │ ├── cmake │ │ └── .gitkeep │ └── projectGenerator │ │ ├── ofProjectGenerator.h │ │ └── ofxProjectGenerator │ │ └── src │ │ ├── addons │ │ ├── ofAddon.cpp │ │ └── ofAddon.h │ │ ├── projects │ │ ├── CBLinuxProject.cpp │ │ ├── CBLinuxProject.h │ │ ├── CBWinProject.cpp │ │ ├── CBWinProject.h │ │ ├── androidStudioProject.cpp │ │ ├── androidStudioProject.h │ │ ├── baseProject.cpp │ │ ├── baseProject.h │ │ ├── qtcreatorproject.cpp │ │ ├── qtcreatorproject.h │ │ ├── visualStudioProject.cpp │ │ ├── visualStudioProject.h │ │ ├── xcodeProject.cpp │ │ └── xcodeProject.h │ │ └── utils │ │ ├── LibraryBinary.cpp │ │ ├── LibraryBinary.h │ │ ├── Utils.cpp │ │ └── Utils.h ├── ghRepo.h ├── helpers.h ├── interfaces │ ├── cli.h │ ├── gui │ │ ├── Theme.cpp │ │ ├── Theme.h │ │ ├── console.h │ │ ├── fonts │ │ │ ├── fa_solid_900.h │ │ │ ├── font_awesome_5.h │ │ │ └── tahoma.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── helpers.h │ │ └── notifications.h │ └── jsonInterface.h ├── main.cpp ├── ofApp.cpp ├── ofApp.h ├── ofPackage.h ├── ofVersion.h ├── whereami.c └── whereami.h └── win-path.png /.github/workflows/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/.github/workflows/build_linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/addons.make -------------------------------------------------------------------------------- /assets/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/assets/logo.sketch -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /bin/data/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/bin/data/Roboto-Regular.ttf -------------------------------------------------------------------------------- /bin/data/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/bin/data/fa-solid-900.ttf -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/config.make -------------------------------------------------------------------------------- /docs/configure_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/docs/configure_project.png -------------------------------------------------------------------------------- /docs/install_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/docs/install_addon.png -------------------------------------------------------------------------------- /docs/jsonInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/docs/jsonInterface.md -------------------------------------------------------------------------------- /docs/open_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/docs/open_project.png -------------------------------------------------------------------------------- /ofPackages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/ofPackages.json -------------------------------------------------------------------------------- /scripts/add_to_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/add_to_path.sh -------------------------------------------------------------------------------- /scripts/fix_dylib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/fix_dylib.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /scripts/linux/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/linux/install.sh -------------------------------------------------------------------------------- /scripts/linux/package.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -------------------------------------------------------------------------------- /scripts/ofPackageManager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/ofPackageManager.sh -------------------------------------------------------------------------------- /scripts/osx/downloadAndAddToPath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/osx/downloadAndAddToPath.sh -------------------------------------------------------------------------------- /scripts/osx/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/osx/install.sh -------------------------------------------------------------------------------- /scripts/osx/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/osx/package.sh -------------------------------------------------------------------------------- /scripts/osx/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/osx/sign.sh -------------------------------------------------------------------------------- /scripts/package_release_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/package_release_osx.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/test/index.js -------------------------------------------------------------------------------- /scripts/windows/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/scripts/windows/install.sh -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/generators/cmake/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofProjectGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofProjectGenerator.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/addons/ofAddon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/addons/ofAddon.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/addons/ofAddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/addons/ofAddon.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBLinuxProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBLinuxProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBLinuxProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBLinuxProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBWinProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBWinProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBWinProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/CBWinProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/androidStudioProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/androidStudioProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/androidStudioProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/androidStudioProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/baseProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/baseProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/baseProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/baseProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/qtcreatorproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/qtcreatorproject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/qtcreatorproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/qtcreatorproject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/visualStudioProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/visualStudioProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/visualStudioProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/visualStudioProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/xcodeProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/xcodeProject.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/projects/xcodeProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/projects/xcodeProject.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/utils/LibraryBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/utils/LibraryBinary.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/utils/LibraryBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/utils/LibraryBinary.h -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/utils/Utils.cpp -------------------------------------------------------------------------------- /src/generators/projectGenerator/ofxProjectGenerator/src/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/generators/projectGenerator/ofxProjectGenerator/src/utils/Utils.h -------------------------------------------------------------------------------- /src/ghRepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/ghRepo.h -------------------------------------------------------------------------------- /src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/helpers.h -------------------------------------------------------------------------------- /src/interfaces/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/cli.h -------------------------------------------------------------------------------- /src/interfaces/gui/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/Theme.cpp -------------------------------------------------------------------------------- /src/interfaces/gui/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/Theme.h -------------------------------------------------------------------------------- /src/interfaces/gui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/console.h -------------------------------------------------------------------------------- /src/interfaces/gui/fonts/fa_solid_900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/fonts/fa_solid_900.h -------------------------------------------------------------------------------- /src/interfaces/gui/fonts/font_awesome_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/fonts/font_awesome_5.h -------------------------------------------------------------------------------- /src/interfaces/gui/fonts/tahoma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/fonts/tahoma.h -------------------------------------------------------------------------------- /src/interfaces/gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/gui.cpp -------------------------------------------------------------------------------- /src/interfaces/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/gui.h -------------------------------------------------------------------------------- /src/interfaces/gui/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/helpers.h -------------------------------------------------------------------------------- /src/interfaces/gui/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/gui/notifications.h -------------------------------------------------------------------------------- /src/interfaces/jsonInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/interfaces/jsonInterface.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/ofApp.h -------------------------------------------------------------------------------- /src/ofPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/ofPackage.h -------------------------------------------------------------------------------- /src/ofVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/ofVersion.h -------------------------------------------------------------------------------- /src/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/whereami.c -------------------------------------------------------------------------------- /src/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/src/whereami.h -------------------------------------------------------------------------------- /win-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasgeissl/ofPackageManager/HEAD/win-path.png --------------------------------------------------------------------------------