Cross-Platform build scripts for audio plugins
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.

14 lines
474B

  1. diff --git a/wscript b/wscript
  2. index 2cd8846..426b5f9 100644
  3. --- a/wscript
  4. +++ b/wscript
  5. @@ -170,7 +170,7 @@ def build(bld):
  6. # Waveform data source
  7. for i in ['parabola', 'sawtooth', 'square']:
  8. - cmd = '${SRC} -r %d -f 12 -s 1 -m 128 -g 1.0 -w %s -p %s -o ${TGT}'
  9. + cmd = 'wine ${SRC} -r %d -f 12 -s 1 -m 128 -g 1.0 -w %s -p %s -o ${TGT}'
  10. bld(rule = cmd % (Options.options.rate, i, i),
  11. source = wavegen.link_task.outputs[0],