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.

22 lines
605B

  1. #pragma once
  2. #include "JucePluginMain.h"
  3. // #include "BinaryData.h"
  4. #if ! DONT_SET_USING_JUCE_NAMESPACE
  5. // If your code uses a lot of JUCE classes, then this will obviously save you
  6. // a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
  7. using namespace juce;
  8. #endif
  9. #if ! JUCE_DONT_DECLARE_PROJECTINFO
  10. namespace ProjectInfo
  11. {
  12. const char* const projectName = "Syndicate";
  13. const char* const companyName = "White Elephant Audio";
  14. const char* const versionString = "1.5.0";
  15. const int versionNumber = 0x10500;
  16. }
  17. #endif