Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

carla-host-plugin.cpp 890B

1234567891011121314151617181920212223242526
  1. // SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <falktx@falktx.com>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "CarlaNativePlugin.h"
  4. #define CARLA_PLUGIN_BUILD
  5. #define CARLA_HOST_PLUGIN_BUILD
  6. #include "carla-native-plugin.cpp"
  7. // -------------------------------------------------------------------------------------------------------------------
  8. // Include utils code first
  9. #include "utils/CachedPlugins.cpp"
  10. #include "utils/Information.cpp"
  11. #include "utils/PipeClient.cpp"
  12. #include "utils/PluginDiscovery.cpp"
  13. #include "utils/System.cpp"
  14. #include "utils/Windows.cpp"
  15. // -------------------------------------------------------------------------------------------------------------------
  16. // Include all standalone code
  17. #include "CarlaStandalone.cpp"
  18. // -------------------------------------------------------------------------------------------------------------------