The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

18 lines
398B

  1. #include "../BlockFinder.h"
  2. #import <Cocoa/Cocoa.h>
  3. int main (int argc, const char * argv[])
  4. {
  5. // Initialise the JUCE code.
  6. juce::ScopedJuceInitialiser_GUI platform;
  7. // Create our JUCE object.
  8. BlockFinder finder;
  9. // Run an event loop.
  10. while ([[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]);
  11. return 0;
  12. }