mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
cfgtool: add external VST functions used by libardour
This commit is contained in:
parent
e4428ece34
commit
d9655f6d64
2 changed files with 9 additions and 0 deletions
|
|
@ -45,3 +45,9 @@ int main (int argc, char **argv) {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#include "ardour/vst_types.h"
|
||||||
|
int vstfx_init (void*) { return 0; }
|
||||||
|
void vstfx_exit () {}
|
||||||
|
void vstfx_destroy_editor (VSTState*) {}
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,9 @@ def configure(conf):
|
||||||
autowaf.configure(conf)
|
autowaf.configure(conf)
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
|
if bld.is_defined('WINDOWS_VST_SUPPORT') and bld.env['build_target'] != 'mingw':
|
||||||
|
return;
|
||||||
|
|
||||||
obj = bld (features = 'cxx c cxxprogram')
|
obj = bld (features = 'cxx c cxxprogram')
|
||||||
obj.source = 'cfgtool.cc'
|
obj.source = 'cfgtool.cc'
|
||||||
obj.target = 'cfgtool'
|
obj.target = 'cfgtool'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue