├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── code-checks.yml │ └── pullreq.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── VST3_Info.plist.in ├── auv2_Info.plist.in ├── base_sdks.cmake ├── external │ └── CPM.cmake ├── macBundlePkgInfo ├── make_clapfirst.cmake ├── shared_prologue.cmake ├── top_level_default.cmake ├── wrap_auv2.cmake ├── wrap_clap.cmake ├── wrap_standalone.cmake ├── wrap_vst3.cmake ├── wrap_wclap_emscripten.cmake └── wrapper_functions.cmake ├── include └── clapwrapper │ ├── auv2.h │ └── vst3.h ├── libs ├── fmt │ ├── README.md │ └── fmt │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── ostream.h │ │ ├── ranges.h │ │ └── xchar.h └── psl │ ├── README.md │ └── presonus-plugin-extensions │ └── ipslgainreduction.h ├── src ├── clap_proxy.cpp ├── clap_proxy.h ├── detail │ ├── ara │ │ └── ara.h │ ├── auv2 │ │ ├── auv2_base_classes.h │ │ ├── auv2_shared.h │ │ ├── auv2_shared.mm │ │ ├── build-helper │ │ │ ├── auv2_infoplist_top.in │ │ │ └── build-helper.cpp │ │ ├── parameter.cpp │ │ ├── parameter.h │ │ ├── process.cpp │ │ ├── process.h │ │ ├── wrappedview.asinclude.mm │ │ └── wrappedview.mm │ ├── clap │ │ ├── automation.h │ │ ├── fsutil.cpp │ │ ├── fsutil.h │ │ └── mac_helpers.mm │ ├── os │ │ ├── fs.h │ │ ├── linux.cpp │ │ ├── log.h │ │ ├── macos.mm │ │ ├── osutil.h │ │ ├── osutil_windows.h │ │ └── windows.cpp │ ├── shared │ │ ├── fixedqueue.h │ │ ├── sha1.cpp │ │ ├── sha1.h │ │ └── spinlock.h │ ├── standalone │ │ ├── entry.cpp │ │ ├── entry.h │ │ ├── linux │ │ │ ├── gtkutils.cpp │ │ │ └── gtkutils.h │ │ ├── macos │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Info.plist.in │ │ │ ├── MainMenu.xib │ │ │ └── StandaloneFunctions.mm │ │ ├── standalone_details.h │ │ ├── standalone_host.cpp │ │ ├── standalone_host.h │ │ ├── standalone_host_audio.cpp │ │ ├── standalone_host_midi.cpp │ │ └── windows │ │ │ ├── windows_standalone.cpp │ │ │ ├── windows_standalone.h │ │ │ └── windows_standalone.manifest │ └── vst3 │ │ ├── aravst3.h │ │ ├── categories.cpp │ │ ├── categories.h │ │ ├── parameter.cpp │ │ ├── parameter.h │ │ ├── plugview.cpp │ │ ├── plugview.h │ │ ├── process.cpp │ │ ├── process.h │ │ └── state.h ├── wrapasauv2.cpp ├── wrapasstandalone.cpp ├── wrapasstandalone.mm ├── wrapasstandalone_windows.cpp ├── wrapasvst3.cpp ├── wrapasvst3.h ├── wrapasvst3_entry.cpp └── wrapasvst3_export_entry.cpp └── tests ├── CMakeLists.txt └── clap-first-example ├── CMakeLists.txt ├── distortion_clap.cpp ├── distortion_clap_entry.cpp └── distortion_clap_entry.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/code-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/.github/workflows/code-checks.yml -------------------------------------------------------------------------------- /.github/workflows/pullreq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/.github/workflows/pullreq.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /cmake/VST3_Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/VST3_Info.plist.in -------------------------------------------------------------------------------- /cmake/auv2_Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/auv2_Info.plist.in -------------------------------------------------------------------------------- /cmake/base_sdks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/base_sdks.cmake -------------------------------------------------------------------------------- /cmake/external/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/external/CPM.cmake -------------------------------------------------------------------------------- /cmake/macBundlePkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /cmake/make_clapfirst.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/make_clapfirst.cmake -------------------------------------------------------------------------------- /cmake/shared_prologue.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/shared_prologue.cmake -------------------------------------------------------------------------------- /cmake/top_level_default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/top_level_default.cmake -------------------------------------------------------------------------------- /cmake/wrap_auv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrap_auv2.cmake -------------------------------------------------------------------------------- /cmake/wrap_clap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrap_clap.cmake -------------------------------------------------------------------------------- /cmake/wrap_standalone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrap_standalone.cmake -------------------------------------------------------------------------------- /cmake/wrap_vst3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrap_vst3.cmake -------------------------------------------------------------------------------- /cmake/wrap_wclap_emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrap_wclap_emscripten.cmake -------------------------------------------------------------------------------- /cmake/wrapper_functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/cmake/wrapper_functions.cmake -------------------------------------------------------------------------------- /include/clapwrapper/auv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/include/clapwrapper/auv2.h -------------------------------------------------------------------------------- /include/clapwrapper/vst3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/include/clapwrapper/vst3.h -------------------------------------------------------------------------------- /libs/fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/README.md -------------------------------------------------------------------------------- /libs/fmt/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/base.h -------------------------------------------------------------------------------- /libs/fmt/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/chrono.h -------------------------------------------------------------------------------- /libs/fmt/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/color.h -------------------------------------------------------------------------------- /libs/fmt/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/format-inl.h -------------------------------------------------------------------------------- /libs/fmt/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/format.h -------------------------------------------------------------------------------- /libs/fmt/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/ostream.h -------------------------------------------------------------------------------- /libs/fmt/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/ranges.h -------------------------------------------------------------------------------- /libs/fmt/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/fmt/fmt/xchar.h -------------------------------------------------------------------------------- /libs/psl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/psl/README.md -------------------------------------------------------------------------------- /libs/psl/presonus-plugin-extensions/ipslgainreduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/libs/psl/presonus-plugin-extensions/ipslgainreduction.h -------------------------------------------------------------------------------- /src/clap_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/clap_proxy.cpp -------------------------------------------------------------------------------- /src/clap_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/clap_proxy.h -------------------------------------------------------------------------------- /src/detail/ara/ara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/ara/ara.h -------------------------------------------------------------------------------- /src/detail/auv2/auv2_base_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/auv2_base_classes.h -------------------------------------------------------------------------------- /src/detail/auv2/auv2_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/auv2_shared.h -------------------------------------------------------------------------------- /src/detail/auv2/auv2_shared.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/auv2_shared.mm -------------------------------------------------------------------------------- /src/detail/auv2/build-helper/auv2_infoplist_top.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/build-helper/auv2_infoplist_top.in -------------------------------------------------------------------------------- /src/detail/auv2/build-helper/build-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/build-helper/build-helper.cpp -------------------------------------------------------------------------------- /src/detail/auv2/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/parameter.cpp -------------------------------------------------------------------------------- /src/detail/auv2/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/parameter.h -------------------------------------------------------------------------------- /src/detail/auv2/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/process.cpp -------------------------------------------------------------------------------- /src/detail/auv2/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/process.h -------------------------------------------------------------------------------- /src/detail/auv2/wrappedview.asinclude.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/wrappedview.asinclude.mm -------------------------------------------------------------------------------- /src/detail/auv2/wrappedview.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/auv2/wrappedview.mm -------------------------------------------------------------------------------- /src/detail/clap/automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/clap/automation.h -------------------------------------------------------------------------------- /src/detail/clap/fsutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/clap/fsutil.cpp -------------------------------------------------------------------------------- /src/detail/clap/fsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/clap/fsutil.h -------------------------------------------------------------------------------- /src/detail/clap/mac_helpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/clap/mac_helpers.mm -------------------------------------------------------------------------------- /src/detail/os/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/fs.h -------------------------------------------------------------------------------- /src/detail/os/linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/linux.cpp -------------------------------------------------------------------------------- /src/detail/os/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/log.h -------------------------------------------------------------------------------- /src/detail/os/macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/macos.mm -------------------------------------------------------------------------------- /src/detail/os/osutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/osutil.h -------------------------------------------------------------------------------- /src/detail/os/osutil_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/osutil_windows.h -------------------------------------------------------------------------------- /src/detail/os/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/os/windows.cpp -------------------------------------------------------------------------------- /src/detail/shared/fixedqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/shared/fixedqueue.h -------------------------------------------------------------------------------- /src/detail/shared/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/shared/sha1.cpp -------------------------------------------------------------------------------- /src/detail/shared/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/shared/sha1.h -------------------------------------------------------------------------------- /src/detail/shared/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/shared/spinlock.h -------------------------------------------------------------------------------- /src/detail/standalone/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/entry.cpp -------------------------------------------------------------------------------- /src/detail/standalone/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/entry.h -------------------------------------------------------------------------------- /src/detail/standalone/linux/gtkutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/linux/gtkutils.cpp -------------------------------------------------------------------------------- /src/detail/standalone/linux/gtkutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/linux/gtkutils.h -------------------------------------------------------------------------------- /src/detail/standalone/macos/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/macos/AppDelegate.h -------------------------------------------------------------------------------- /src/detail/standalone/macos/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/macos/AppDelegate.mm -------------------------------------------------------------------------------- /src/detail/standalone/macos/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/macos/Info.plist.in -------------------------------------------------------------------------------- /src/detail/standalone/macos/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/macos/MainMenu.xib -------------------------------------------------------------------------------- /src/detail/standalone/macos/StandaloneFunctions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/macos/StandaloneFunctions.mm -------------------------------------------------------------------------------- /src/detail/standalone/standalone_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/standalone_details.h -------------------------------------------------------------------------------- /src/detail/standalone/standalone_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/standalone_host.cpp -------------------------------------------------------------------------------- /src/detail/standalone/standalone_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/standalone_host.h -------------------------------------------------------------------------------- /src/detail/standalone/standalone_host_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/standalone_host_audio.cpp -------------------------------------------------------------------------------- /src/detail/standalone/standalone_host_midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/standalone_host_midi.cpp -------------------------------------------------------------------------------- /src/detail/standalone/windows/windows_standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/windows/windows_standalone.cpp -------------------------------------------------------------------------------- /src/detail/standalone/windows/windows_standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/windows/windows_standalone.h -------------------------------------------------------------------------------- /src/detail/standalone/windows/windows_standalone.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/standalone/windows/windows_standalone.manifest -------------------------------------------------------------------------------- /src/detail/vst3/aravst3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/aravst3.h -------------------------------------------------------------------------------- /src/detail/vst3/categories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/categories.cpp -------------------------------------------------------------------------------- /src/detail/vst3/categories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/categories.h -------------------------------------------------------------------------------- /src/detail/vst3/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/parameter.cpp -------------------------------------------------------------------------------- /src/detail/vst3/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/parameter.h -------------------------------------------------------------------------------- /src/detail/vst3/plugview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/plugview.cpp -------------------------------------------------------------------------------- /src/detail/vst3/plugview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/plugview.h -------------------------------------------------------------------------------- /src/detail/vst3/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/process.cpp -------------------------------------------------------------------------------- /src/detail/vst3/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/process.h -------------------------------------------------------------------------------- /src/detail/vst3/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/detail/vst3/state.h -------------------------------------------------------------------------------- /src/wrapasauv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasauv2.cpp -------------------------------------------------------------------------------- /src/wrapasstandalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasstandalone.cpp -------------------------------------------------------------------------------- /src/wrapasstandalone.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasstandalone.mm -------------------------------------------------------------------------------- /src/wrapasstandalone_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasstandalone_windows.cpp -------------------------------------------------------------------------------- /src/wrapasvst3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasvst3.cpp -------------------------------------------------------------------------------- /src/wrapasvst3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasvst3.h -------------------------------------------------------------------------------- /src/wrapasvst3_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasvst3_entry.cpp -------------------------------------------------------------------------------- /src/wrapasvst3_export_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/src/wrapasvst3_export_entry.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(clap-first-example) 2 | -------------------------------------------------------------------------------- /tests/clap-first-example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/tests/clap-first-example/CMakeLists.txt -------------------------------------------------------------------------------- /tests/clap-first-example/distortion_clap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/tests/clap-first-example/distortion_clap.cpp -------------------------------------------------------------------------------- /tests/clap-first-example/distortion_clap_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/tests/clap-first-example/distortion_clap_entry.cpp -------------------------------------------------------------------------------- /tests/clap-first-example/distortion_clap_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-audio/clap-wrapper/HEAD/tests/clap-first-example/distortion_clap_entry.h --------------------------------------------------------------------------------