├── .gitignore ├── Makefile ├── Project.xcconfig ├── README.md ├── addons.make ├── bin ├── data │ ├── .DS_Store │ ├── .gitkeep │ └── ofxbraitsch │ │ ├── fonts │ │ └── Verdana.ttf │ │ └── ofxdatgui │ │ ├── icon-group-closed.png │ │ ├── icon-group-open.png │ │ ├── icon-radio-off.png │ │ ├── icon-radio-on.png │ │ └── picker-rainbow.png ├── ofxMidiClockAbletonLink.app │ └── Contents │ │ ├── Frameworks │ │ └── libfmod.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ └── ofxMidiClockAbletonLink │ │ └── Resources │ │ └── of.icns └── settings.xml ├── config.make ├── image.png ├── obj └── osx │ └── Release │ ├── .compiler_flags │ └── src │ ├── main.d │ ├── main.o │ ├── ofApp.d │ └── ofApp.o ├── of.entitlements ├── ofxMidiClockAbletonLink.qbs ├── ofxMidiClockAbletonLink.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── ofxMidiClockAbletonLink Debug.xcscheme │ └── ofxMidiClockAbletonLink Release.xcscheme ├── openFrameworks-Info.plist └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/addons.make -------------------------------------------------------------------------------- /bin/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/.DS_Store -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/fonts/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/fonts/Verdana.ttf -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/ofxdatgui/icon-group-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/ofxdatgui/icon-group-closed.png -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/ofxdatgui/icon-group-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/ofxdatgui/icon-group-open.png -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/ofxdatgui/icon-radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/ofxdatgui/icon-radio-off.png -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/ofxdatgui/icon-radio-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/ofxdatgui/icon-radio-on.png -------------------------------------------------------------------------------- /bin/data/ofxbraitsch/ofxdatgui/picker-rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/data/ofxbraitsch/ofxdatgui/picker-rainbow.png -------------------------------------------------------------------------------- /bin/ofxMidiClockAbletonLink.app/Contents/Frameworks/libfmod.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/ofxMidiClockAbletonLink.app/Contents/Frameworks/libfmod.dylib -------------------------------------------------------------------------------- /bin/ofxMidiClockAbletonLink.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/ofxMidiClockAbletonLink.app/Contents/Info.plist -------------------------------------------------------------------------------- /bin/ofxMidiClockAbletonLink.app/Contents/MacOS/ofxMidiClockAbletonLink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/ofxMidiClockAbletonLink.app/Contents/MacOS/ofxMidiClockAbletonLink -------------------------------------------------------------------------------- /bin/ofxMidiClockAbletonLink.app/Contents/Resources/of.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/ofxMidiClockAbletonLink.app/Contents/Resources/of.icns -------------------------------------------------------------------------------- /bin/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/bin/settings.xml -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/config.make -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/image.png -------------------------------------------------------------------------------- /obj/osx/Release/.compiler_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/obj/osx/Release/.compiler_flags -------------------------------------------------------------------------------- /obj/osx/Release/src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/obj/osx/Release/src/main.d -------------------------------------------------------------------------------- /obj/osx/Release/src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/obj/osx/Release/src/main.o -------------------------------------------------------------------------------- /obj/osx/Release/src/ofApp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/obj/osx/Release/src/ofApp.d -------------------------------------------------------------------------------- /obj/osx/Release/src/ofApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/obj/osx/Release/src/ofApp.o -------------------------------------------------------------------------------- /of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/of.entitlements -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.qbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/xcshareddata/xcschemes/ofxMidiClockAbletonLink Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/xcshareddata/xcschemes/ofxMidiClockAbletonLink Debug.xcscheme -------------------------------------------------------------------------------- /ofxMidiClockAbletonLink.xcodeproj/xcshareddata/xcschemes/ofxMidiClockAbletonLink Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/ofxMidiClockAbletonLink.xcodeproj/xcshareddata/xcschemes/ofxMidiClockAbletonLink Release.xcscheme -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andymann/ofxMidiClockAbletonLink/HEAD/src/ofApp.h --------------------------------------------------------------------------------