Extra "ports" of juce-based plugins using the distrho build system
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.

20 lines
478B

  1. -- protoplug.lua
  2. -- basic globals for every protoplug script
  3. -- luaJIT
  4. ffi = require "ffi"
  5. bit = require "bit"
  6. -- load protoplug as a dynamic library using ffi
  7. protolib = ffi.load(protoplug_path)
  8. juce = require "include/protojuce"
  9. midi = require "include/core/midi"
  10. script = require "include/core/script"
  11. plugin = require "include/core/plugin"
  12. gui = require "include/core/gui"
  13. polyGen = require "include/core/polygen"
  14. stereoFx = require "include/core/stereofx"