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.

32 lines
623B

  1. #pragma once
  2. // we don't control these, so don't complain to me about them
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wall"
  5. #pragma GCC diagnostic ignored "-Wextra"
  6. #pragma clang diagnostic push
  7. #pragma clang diagnostic ignored "-Weverything"
  8. #include <vector>
  9. #include <condition_variable>
  10. #include <mutex>
  11. #include "rack.hpp"
  12. // re-entering our zone of concern
  13. #pragma GCC diagnostic pop
  14. #pragma clang diagnostic pop
  15. using namespace rack;
  16. namespace rack_plugin_Skylights {
  17. }
  18. RACK_PLUGIN_DECLARE(Skylights);
  19. #ifdef USE_VST2
  20. #define plugin "Skylights"
  21. #endif // USE_VST2
  22. #include "components.hh"