├── .gitignore ├── README.md └── VST2 ├── .gitignore ├── HelloVST.cpp ├── Info.plist ├── Makefile ├── PkgInfo └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/README.md -------------------------------------------------------------------------------- /VST2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/VST2/.gitignore -------------------------------------------------------------------------------- /VST2/HelloVST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/VST2/HelloVST.cpp -------------------------------------------------------------------------------- /VST2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/VST2/Info.plist -------------------------------------------------------------------------------- /VST2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/VST2/Makefile -------------------------------------------------------------------------------- /VST2/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /VST2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBelt/HelloDAW/HEAD/VST2/README.md --------------------------------------------------------------------------------