├── .DS_Store ├── .gitattributes ├── .vs ├── CMake Overview ├── ProjectSettings.json ├── ase_km_caverb │ └── v16 │ │ ├── .suo │ │ └── Browse.VC.db ├── cmake.db └── slnx.sqlite ├── CMakeLists.txt ├── README.md ├── cmake ├── aax_cmake │ └── CMakeLists.txt ├── au_cmake │ └── CMakeLists.txt └── vst_cmake │ └── CMakeLists.txt ├── mac_build └── readme.txt ├── out └── build │ └── x64-Debug (default) │ ├── .cmake │ └── api │ │ └── v1 │ │ ├── query │ │ └── client-MicrosoftVS │ │ │ └── query.json │ │ └── reply │ │ ├── cache-v2-3d00ecc6f8fbfa668a26.json │ │ ├── cmakeFiles-v1-5a05c73baa60ec1bb043.json │ │ ├── codemodel-v2-d25973c63be37bf4f9b0.json │ │ ├── index-2021-01-16T11-57-00-0440.json │ │ ├── target-ASE_KM_Caverb_VST-Debug-f949f88552432f3a15c7.json │ │ ├── target-base-Debug-e168b876afa889eddab5.json │ │ ├── target-pluginterfaces-Debug-7d27508ed21e0bfeca96.json │ │ ├── target-sdk-Debug-10bf214703c76b381261.json │ │ ├── target-uidesccompressor-Debug-96d350aa74212a860567.json │ │ ├── target-validator-Debug-559abf03b9536722c2e9.json │ │ ├── target-vstgui-Debug-3de1846a6883a556c18b.json │ │ ├── target-vstgui_support-Debug-0a0e96f6a035cba1d94f.json │ │ └── target-vstgui_uidescription-Debug-77606bd5b9ad7cc83e1d.json │ ├── CMakeCache.txt │ ├── CMakeFiles │ ├── 3.18.20081302-MSVC_2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeRCCompiler.cmake │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ ├── CMakeCCompilerId.exe │ │ │ └── CMakeCCompilerId.obj │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ ├── CMakeCXXCompilerId.exe │ │ │ └── CMakeCXXCompilerId.obj │ ├── CMakeOutput.log │ ├── ShowIncludes │ │ ├── foo.h │ │ ├── main.c │ │ └── main.obj │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ └── rules.ninja │ ├── Testing │ └── Temporary │ │ └── LastTest.log │ ├── VSInheritEnvironments.txt │ ├── build.ninja │ ├── cmake │ └── vst_cmake │ │ ├── base │ │ └── cmake_install.cmake │ │ ├── cmake_install.cmake │ │ ├── pluginterfaces │ │ └── cmake_install.cmake │ │ ├── public.sdk │ │ ├── cmake_install.cmake │ │ └── samples │ │ │ └── vst-hosting │ │ │ ├── audiohost │ │ │ └── cmake_install.cmake │ │ │ ├── cmake_install.cmake │ │ │ ├── editorhost │ │ │ └── cmake_install.cmake │ │ │ └── validator │ │ │ └── cmake_install.cmake │ │ └── vstgui4 │ │ └── vstgui │ │ ├── cmake_install.cmake │ │ ├── lib │ │ └── cmake_install.cmake │ │ ├── tools │ │ ├── cmake_install.cmake │ │ └── uidesccompressor │ │ │ └── cmake_install.cmake │ │ └── uidescription │ │ └── cmake_install.cmake │ ├── cmake_install.cmake │ ├── compile_commands.json │ └── project_source │ └── cmake │ └── vst_cmake │ └── cmake_install.cmake ├── project_source ├── cmake │ ├── aax_cmake │ │ └── CMakeLists.txt │ ├── au_cmake │ │ └── CMakeLists.txt │ └── vst_cmake │ │ └── CMakeLists.txt ├── mac │ ├── aax │ │ └── Info.plist │ ├── au │ │ ├── Info.plist │ │ └── cocoaInfo.plist │ └── vst │ │ └── Info.plist ├── resources │ ├── PluginGUI.uidesc │ ├── backgrounds │ │ ├── halfspacerack.png │ │ ├── halfspacerack_dark.png │ │ ├── singlespacerack.png │ │ ├── singlespacerack_dark.png │ │ ├── twospacerack.png │ │ └── twospacerack_dark.png │ ├── buttons │ │ ├── greenplasticbuttonsquare.png │ │ ├── medoberheimbutton.png │ │ ├── medprophetbutton.png │ │ ├── medtoggleswitch.png │ │ └── yellowplasticbuttonsquare.png │ ├── knobs │ │ ├── abletonorange.png │ │ ├── abletonorange2.png │ │ ├── chickenhead2.png │ │ ├── maschine.png │ │ └── s6white.png │ └── meters │ │ ├── vuoff.png │ │ └── vuon.png ├── source │ ├── CustomControls │ │ ├── atomicops.h │ │ ├── customcontrols.cpp │ │ ├── customcontrols.h │ │ ├── customviews.cpp │ │ ├── customviews.h │ │ └── readerwriterqueue.h │ ├── FFTW │ │ ├── fftw3.h │ │ └── readme.txt │ ├── PluginKernel │ │ ├── db2lin.cpp │ │ ├── db2lin.h │ │ ├── deZipper.cpp │ │ ├── deZipper.h │ │ ├── guiconstants.h │ │ ├── lin2db.cpp │ │ ├── lin2db.h │ │ ├── pluginbase.cpp │ │ ├── pluginbase.h │ │ ├── plugincore.cpp │ │ ├── plugincore.h │ │ ├── plugindescription.h │ │ ├── plugingui.cpp │ │ ├── plugingui.h │ │ ├── pluginparameter.cpp │ │ ├── pluginparameter.h │ │ ├── pluginstructures.h │ │ ├── tg_AAPFlite.cpp │ │ ├── tg_AAPFlite.h │ │ ├── tg_LPF.cpp │ │ └── tg_LPF.h │ ├── PluginObjects │ │ ├── filters.h │ │ ├── fxobjects.cpp │ │ ├── fxobjects.h │ │ └── readme.txt │ ├── aax_source │ │ ├── AAXPluginDescribe.cpp │ │ ├── AAXPluginDescribe.h │ │ ├── AAXPluginGUI.cpp │ │ ├── AAXPluginGUI.h │ │ ├── AAXPluginParameters.cpp │ │ ├── AAXPluginParameters.h │ │ ├── AAXtoVSTGUIButtonState.h │ │ ├── AntiLogTaperDelegate.h │ │ ├── LogTaperDelegate.h │ │ ├── VoltOctaveTaperDelegate.h │ │ └── channelformats.h │ ├── au_source │ │ ├── aufxplugin.cpp │ │ ├── aufxplugin.exp │ │ ├── aufxplugin.h │ │ ├── ausynthplugin.cpp │ │ ├── ausynthplugin.exp │ │ ├── ausynthplugin.h │ │ └── cocoa_ui │ │ │ └── aucocoaviewfactory.mm │ └── vst_source │ │ ├── channelformats.h │ │ ├── customparameters.cpp │ │ ├── customparameters.h │ │ ├── factory.cpp │ │ ├── vst3plugin.cpp │ │ └── vst3plugin.h └── win │ ├── aax │ ├── PluginGUIMain.rc │ └── PreBuildEvent.bat │ └── vst │ └── PluginGUIMain.rc └── win_build ├── .gitattributes ├── .gitignore ├── ALL_BUILD.vcxproj ├── ALL_BUILD.vcxproj.filters ├── ASE_KM_Caverb.sln ├── ASE_KM_Caverb_UNIVERSAL.sln ├── CMakeCache.txt ├── CMakeFiles ├── 3.19.2 │ ├── CMakeCCompiler.cmake │ ├── CMakeCXXCompiler.cmake │ ├── CMakeDetermineCompilerABI_C.bin │ ├── CMakeDetermineCompilerABI_CXX.bin │ ├── CMakeRCCompiler.cmake │ ├── CMakeSystem.cmake │ ├── CompilerIdC │ │ ├── CMakeCCompilerId.c │ │ ├── CompilerIdC.exe │ │ └── CompilerIdC.vcxproj │ ├── CompilerIdCXX │ │ ├── CMakeCXXCompilerId.cpp │ │ ├── CompilerIdCXX.exe │ │ └── CompilerIdCXX.vcxproj │ ├── VCTargetsPath.txt │ └── VCTargetsPath.vcxproj ├── 999f195f17fd060d5b08d5b2fab0f845 │ └── generate.stamp.rule ├── TargetDirectories.txt ├── bd29dba08c876d999b156b52552045d8 │ └── generate.stamp.rule ├── cmake.check_cache ├── generate.stamp ├── generate.stamp.depend └── generate.stamp.list ├── ZERO_CHECK.vcxproj ├── ZERO_CHECK.vcxproj.filters ├── cmake └── vst_cmake │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── ASE_KM_Caverb_VST.sln │ ├── CMakeFiles │ ├── generate.stamp │ └── generate.stamp.depend │ ├── ase_km_kaboose_freshstart_VST.sln │ ├── base │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ ├── base.vcxproj │ ├── base.vcxproj.filters │ ├── cmake_install.cmake │ └── smtg_base.sln │ ├── cmake_install.cmake │ ├── pluginterfaces │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ ├── cmake_install.cmake │ ├── pluginterfaces.vcxproj │ ├── pluginterfaces.vcxproj.filters │ └── smtg_pluginterfaces.sln │ ├── public.sdk │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ ├── cmake_install.cmake │ ├── samples │ │ └── vst-hosting │ │ │ ├── CMakeFiles │ │ │ ├── generate.stamp │ │ │ └── generate.stamp.depend │ │ │ ├── audiohost │ │ │ ├── CMakeFiles │ │ │ │ ├── generate.stamp │ │ │ │ └── generate.stamp.depend │ │ │ └── cmake_install.cmake │ │ │ ├── cmake_install.cmake │ │ │ ├── editorhost │ │ │ ├── CMakeFiles │ │ │ │ ├── generate.stamp │ │ │ │ └── generate.stamp.depend │ │ │ └── cmake_install.cmake │ │ │ └── validator │ │ │ ├── CMakeFiles │ │ │ ├── generate.stamp │ │ │ └── generate.stamp.depend │ │ │ ├── cmake_install.cmake │ │ │ ├── validator.vcxproj │ │ │ └── validator.vcxproj.filters │ ├── sdk.vcxproj │ ├── sdk.vcxproj.filters │ └── smtg_public_sdk.sln │ ├── vstgui4 │ └── vstgui │ │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ │ ├── cmake_install.cmake │ │ ├── lib │ │ ├── CMakeFiles │ │ │ ├── generate.stamp │ │ │ └── generate.stamp.depend │ │ ├── cmake_install.cmake │ │ ├── vstgui.vcxproj │ │ └── vstgui.vcxproj.filters │ │ ├── tools │ │ ├── CMakeFiles │ │ │ ├── generate.stamp │ │ │ └── generate.stamp.depend │ │ ├── cmake_install.cmake │ │ └── uidesccompressor │ │ │ ├── CMakeFiles │ │ │ ├── generate.stamp │ │ │ └── generate.stamp.depend │ │ │ ├── cmake_install.cmake │ │ │ ├── uidesccompressor.vcxproj │ │ │ └── uidesccompressor.vcxproj.filters │ │ └── uidescription │ │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ │ ├── cmake_install.cmake │ │ ├── vstgui_uidescription.vcxproj │ │ └── vstgui_uidescription.vcxproj.filters │ ├── vstgui_support.vcxproj │ └── vstgui_support.vcxproj.filters ├── cmake_install.cmake ├── project_source └── cmake │ └── vst_cmake │ ├── ASE_KM_Caverb_VST.vcxproj │ ├── ASE_KM_Caverb_VST.vcxproj.filters │ ├── CMakeFiles │ ├── generate.stamp │ └── generate.stamp.depend │ └── cmake_install.cmake └── readme.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/CMake Overview: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": "x64-Debug (default)" 3 | } -------------------------------------------------------------------------------- /.vs/ase_km_caverb/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.vs/ase_km_caverb/v16/.suo -------------------------------------------------------------------------------- /.vs/ase_km_caverb/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.vs/ase_km_caverb/v16/Browse.VC.db -------------------------------------------------------------------------------- /.vs/cmake.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.vs/cmake.db -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/README.md -------------------------------------------------------------------------------- /cmake/aax_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/cmake/aax_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/au_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/cmake/au_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/vst_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/cmake/vst_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /mac_build/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/mac_build/readme.txt -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/query/client-MicrosoftVS/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/query/client-MicrosoftVS/query.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/cache-v2-3d00ecc6f8fbfa668a26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/cache-v2-3d00ecc6f8fbfa668a26.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/cmakeFiles-v1-5a05c73baa60ec1bb043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/cmakeFiles-v1-5a05c73baa60ec1bb043.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/codemodel-v2-d25973c63be37bf4f9b0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/codemodel-v2-d25973c63be37bf4f9b0.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/index-2021-01-16T11-57-00-0440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/index-2021-01-16T11-57-00-0440.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-ASE_KM_Caverb_VST-Debug-f949f88552432f3a15c7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-ASE_KM_Caverb_VST-Debug-f949f88552432f3a15c7.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-base-Debug-e168b876afa889eddab5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-base-Debug-e168b876afa889eddab5.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-pluginterfaces-Debug-7d27508ed21e0bfeca96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-pluginterfaces-Debug-7d27508ed21e0bfeca96.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-sdk-Debug-10bf214703c76b381261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-sdk-Debug-10bf214703c76b381261.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-uidesccompressor-Debug-96d350aa74212a860567.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-uidesccompressor-Debug-96d350aa74212a860567.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-validator-Debug-559abf03b9536722c2e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-validator-Debug-559abf03b9536722c2e9.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui-Debug-3de1846a6883a556c18b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui-Debug-3de1846a6883a556c18b.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui_support-Debug-0a0e96f6a035cba1d94f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui_support-Debug-0a0e96f6a035cba1d94f.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui_uidescription-Debug-77606bd5b9ad7cc83e1d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/.cmake/api/v1/reply/target-vstgui_uidescription-Debug-77606bd5b9ad7cc83e1d.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeCache.txt -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CMakeSystem.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.exe -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdC/CMakeCCompilerId.obj -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.exe -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/3.18.20081302-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.obj -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/ShowIncludes/foo.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/ShowIncludes/main.c: -------------------------------------------------------------------------------- 1 | #include "foo.h" 2 | int main(){} 3 | -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/ShowIncludes/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/ShowIncludes/main.obj -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/Testing/Temporary/LastTest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/Testing/Temporary/LastTest.log -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/VSInheritEnvironments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/VSInheritEnvironments.txt -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/build.ninja -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/base/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/base/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/pluginterfaces/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/pluginterfaces/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/lib/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/lib/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/tools/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/tools/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/uidescription/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake/vst_cmake/vstgui4/vstgui/uidescription/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/cmake_install.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/compile_commands.json -------------------------------------------------------------------------------- /out/build/x64-Debug (default)/project_source/cmake/vst_cmake/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/out/build/x64-Debug (default)/project_source/cmake/vst_cmake/cmake_install.cmake -------------------------------------------------------------------------------- /project_source/cmake/aax_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/cmake/aax_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /project_source/cmake/au_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/cmake/au_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /project_source/cmake/vst_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/cmake/vst_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /project_source/mac/aax/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/mac/aax/Info.plist -------------------------------------------------------------------------------- /project_source/mac/au/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/mac/au/Info.plist -------------------------------------------------------------------------------- /project_source/mac/au/cocoaInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/mac/au/cocoaInfo.plist -------------------------------------------------------------------------------- /project_source/mac/vst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/mac/vst/Info.plist -------------------------------------------------------------------------------- /project_source/resources/PluginGUI.uidesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/PluginGUI.uidesc -------------------------------------------------------------------------------- /project_source/resources/backgrounds/halfspacerack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/halfspacerack.png -------------------------------------------------------------------------------- /project_source/resources/backgrounds/halfspacerack_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/halfspacerack_dark.png -------------------------------------------------------------------------------- /project_source/resources/backgrounds/singlespacerack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/singlespacerack.png -------------------------------------------------------------------------------- /project_source/resources/backgrounds/singlespacerack_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/singlespacerack_dark.png -------------------------------------------------------------------------------- /project_source/resources/backgrounds/twospacerack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/twospacerack.png -------------------------------------------------------------------------------- /project_source/resources/backgrounds/twospacerack_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/backgrounds/twospacerack_dark.png -------------------------------------------------------------------------------- /project_source/resources/buttons/greenplasticbuttonsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/buttons/greenplasticbuttonsquare.png -------------------------------------------------------------------------------- /project_source/resources/buttons/medoberheimbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/buttons/medoberheimbutton.png -------------------------------------------------------------------------------- /project_source/resources/buttons/medprophetbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/buttons/medprophetbutton.png -------------------------------------------------------------------------------- /project_source/resources/buttons/medtoggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/buttons/medtoggleswitch.png -------------------------------------------------------------------------------- /project_source/resources/buttons/yellowplasticbuttonsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/buttons/yellowplasticbuttonsquare.png -------------------------------------------------------------------------------- /project_source/resources/knobs/abletonorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/knobs/abletonorange.png -------------------------------------------------------------------------------- /project_source/resources/knobs/abletonorange2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/knobs/abletonorange2.png -------------------------------------------------------------------------------- /project_source/resources/knobs/chickenhead2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/knobs/chickenhead2.png -------------------------------------------------------------------------------- /project_source/resources/knobs/maschine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/knobs/maschine.png -------------------------------------------------------------------------------- /project_source/resources/knobs/s6white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/knobs/s6white.png -------------------------------------------------------------------------------- /project_source/resources/meters/vuoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/meters/vuoff.png -------------------------------------------------------------------------------- /project_source/resources/meters/vuon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/resources/meters/vuon.png -------------------------------------------------------------------------------- /project_source/source/CustomControls/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/atomicops.h -------------------------------------------------------------------------------- /project_source/source/CustomControls/customcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/customcontrols.cpp -------------------------------------------------------------------------------- /project_source/source/CustomControls/customcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/customcontrols.h -------------------------------------------------------------------------------- /project_source/source/CustomControls/customviews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/customviews.cpp -------------------------------------------------------------------------------- /project_source/source/CustomControls/customviews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/customviews.h -------------------------------------------------------------------------------- /project_source/source/CustomControls/readerwriterqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/CustomControls/readerwriterqueue.h -------------------------------------------------------------------------------- /project_source/source/FFTW/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/FFTW/fftw3.h -------------------------------------------------------------------------------- /project_source/source/FFTW/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/FFTW/readme.txt -------------------------------------------------------------------------------- /project_source/source/PluginKernel/db2lin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/db2lin.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/db2lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/db2lin.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/deZipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/deZipper.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/deZipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/deZipper.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/guiconstants.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/lin2db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/lin2db.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/lin2db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/lin2db.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/pluginbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/pluginbase.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/pluginbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/pluginbase.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/plugincore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/plugincore.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/plugincore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/plugincore.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/plugindescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/plugindescription.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/plugingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/plugingui.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/plugingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/plugingui.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/pluginparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/pluginparameter.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/pluginparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/pluginparameter.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/pluginstructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/pluginstructures.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/tg_AAPFlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/tg_AAPFlite.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/tg_AAPFlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/tg_AAPFlite.h -------------------------------------------------------------------------------- /project_source/source/PluginKernel/tg_LPF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/tg_LPF.cpp -------------------------------------------------------------------------------- /project_source/source/PluginKernel/tg_LPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginKernel/tg_LPF.h -------------------------------------------------------------------------------- /project_source/source/PluginObjects/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginObjects/filters.h -------------------------------------------------------------------------------- /project_source/source/PluginObjects/fxobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginObjects/fxobjects.cpp -------------------------------------------------------------------------------- /project_source/source/PluginObjects/fxobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginObjects/fxobjects.h -------------------------------------------------------------------------------- /project_source/source/PluginObjects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/PluginObjects/readme.txt -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginDescribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginDescribe.cpp -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginDescribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginDescribe.h -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginGUI.cpp -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginGUI.h -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginParameters.cpp -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXPluginParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXPluginParameters.h -------------------------------------------------------------------------------- /project_source/source/aax_source/AAXtoVSTGUIButtonState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AAXtoVSTGUIButtonState.h -------------------------------------------------------------------------------- /project_source/source/aax_source/AntiLogTaperDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/AntiLogTaperDelegate.h -------------------------------------------------------------------------------- /project_source/source/aax_source/LogTaperDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/LogTaperDelegate.h -------------------------------------------------------------------------------- /project_source/source/aax_source/VoltOctaveTaperDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/VoltOctaveTaperDelegate.h -------------------------------------------------------------------------------- /project_source/source/aax_source/channelformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/aax_source/channelformats.h -------------------------------------------------------------------------------- /project_source/source/au_source/aufxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/aufxplugin.cpp -------------------------------------------------------------------------------- /project_source/source/au_source/aufxplugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/aufxplugin.exp -------------------------------------------------------------------------------- /project_source/source/au_source/aufxplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/aufxplugin.h -------------------------------------------------------------------------------- /project_source/source/au_source/ausynthplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/ausynthplugin.cpp -------------------------------------------------------------------------------- /project_source/source/au_source/ausynthplugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/ausynthplugin.exp -------------------------------------------------------------------------------- /project_source/source/au_source/ausynthplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/ausynthplugin.h -------------------------------------------------------------------------------- /project_source/source/au_source/cocoa_ui/aucocoaviewfactory.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/au_source/cocoa_ui/aucocoaviewfactory.mm -------------------------------------------------------------------------------- /project_source/source/vst_source/channelformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/channelformats.h -------------------------------------------------------------------------------- /project_source/source/vst_source/customparameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/customparameters.cpp -------------------------------------------------------------------------------- /project_source/source/vst_source/customparameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/customparameters.h -------------------------------------------------------------------------------- /project_source/source/vst_source/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/factory.cpp -------------------------------------------------------------------------------- /project_source/source/vst_source/vst3plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/vst3plugin.cpp -------------------------------------------------------------------------------- /project_source/source/vst_source/vst3plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/source/vst_source/vst3plugin.h -------------------------------------------------------------------------------- /project_source/win/aax/PluginGUIMain.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/win/aax/PluginGUIMain.rc -------------------------------------------------------------------------------- /project_source/win/aax/PreBuildEvent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/win/aax/PreBuildEvent.bat -------------------------------------------------------------------------------- /project_source/win/vst/PluginGUIMain.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/project_source/win/vst/PluginGUIMain.rc -------------------------------------------------------------------------------- /win_build/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/.gitattributes -------------------------------------------------------------------------------- /win_build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/.gitignore -------------------------------------------------------------------------------- /win_build/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /win_build/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /win_build/ASE_KM_Caverb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ASE_KM_Caverb.sln -------------------------------------------------------------------------------- /win_build/ASE_KM_Caverb_UNIVERSAL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ASE_KM_Caverb_UNIVERSAL.sln -------------------------------------------------------------------------------- /win_build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeCache.txt -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdC/CompilerIdC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdC/CompilerIdC.exe -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdC/CompilerIdC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdC/CompilerIdC.vcxproj -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdCXX/CompilerIdCXX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdCXX/CompilerIdCXX.exe -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/CompilerIdCXX/CompilerIdCXX.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/CompilerIdCXX/CompilerIdCXX.vcxproj -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/VCTargetsPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/VCTargetsPath.txt -------------------------------------------------------------------------------- /win_build/CMakeFiles/3.19.2/VCTargetsPath.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/3.19.2/VCTargetsPath.vcxproj -------------------------------------------------------------------------------- /win_build/CMakeFiles/999f195f17fd060d5b08d5b2fab0f845/generate.stamp.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /win_build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /win_build/CMakeFiles/bd29dba08c876d999b156b52552045d8/generate.stamp.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /win_build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /win_build/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/CMakeFiles/generate.stamp.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/CMakeFiles/generate.stamp.list -------------------------------------------------------------------------------- /win_build/ZERO_CHECK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ZERO_CHECK.vcxproj -------------------------------------------------------------------------------- /win_build/ZERO_CHECK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/ZERO_CHECK.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/ASE_KM_Caverb_VST.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/ASE_KM_Caverb_VST.sln -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/ase_km_kaboose_freshstart_VST.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/ase_km_kaboose_freshstart_VST.sln -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/base.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/base.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/base/smtg_base.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/base/smtg_base.sln -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/pluginterfaces.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/pluginterfaces.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/pluginterfaces.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/pluginterfaces.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/pluginterfaces/smtg_pluginterfaces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/pluginterfaces/smtg_pluginterfaces.sln -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/audiohost/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/editorhost/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/validator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/validator.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/validator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/samples/vst-hosting/validator/validator.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/sdk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/sdk.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/sdk.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/sdk.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/public.sdk/smtg_public_sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/public.sdk/smtg_public_sdk.sln -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/lib/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/lib/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/lib/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/lib/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/lib/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/lib/vstgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/lib/vstgui.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/lib/vstgui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/lib/vstgui.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/uidesccompressor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/uidesccompressor.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/uidesccompressor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/tools/uidesccompressor/uidesccompressor.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/vstgui_uidescription.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/vstgui_uidescription.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/vstgui_uidescription.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui4/vstgui/uidescription/vstgui_uidescription.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui_support.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui_support.vcxproj -------------------------------------------------------------------------------- /win_build/cmake/vst_cmake/vstgui_support.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake/vst_cmake/vstgui_support.vcxproj.filters -------------------------------------------------------------------------------- /win_build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/project_source/cmake/vst_cmake/ASE_KM_Caverb_VST.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/project_source/cmake/vst_cmake/ASE_KM_Caverb_VST.vcxproj -------------------------------------------------------------------------------- /win_build/project_source/cmake/vst_cmake/ASE_KM_Caverb_VST.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/project_source/cmake/vst_cmake/ASE_KM_Caverb_VST.vcxproj.filters -------------------------------------------------------------------------------- /win_build/project_source/cmake/vst_cmake/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /win_build/project_source/cmake/vst_cmake/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/project_source/cmake/vst_cmake/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /win_build/project_source/cmake/vst_cmake/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/project_source/cmake/vst_cmake/cmake_install.cmake -------------------------------------------------------------------------------- /win_build/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toasty-ghost/ASE_KM_Caverb/HEAD/win_build/readme.txt --------------------------------------------------------------------------------