Skip to content

Commit 89ff7ac

Browse files
committed
Add another test
1 parent dbef6af commit 89ff7ac

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

Plugins/the gusher.zip

372 KB
Binary file not shown.

build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,20 @@
4545
print(f"\nProcessing: {name}")
4646

4747
author = plugin.get("author", False)
48+
version = plugin.get("version", "1.0.0")
4849
enable_gem = plugin.get("enable_gem", False)
4950
enable_sfizz = plugin.get("enable_sfizz", False)
5051
enable_ffmpeg = plugin.get("enable_ffmpeg", False)
5152

5253
cmake_configure = [
5354
"cmake",
54-
"-GNinja",
55+
"-GXcode",
5556
*cmake_compiler,
5657
f"-B{build_dir}",
5758
f"-DCUSTOM_PLUGIN_NAME={name}",
5859
f"-DCUSTOM_PLUGIN_PATH={zip_path}",
5960
f"-DCUSTOM_PLUGIN_COMPANY={author}",
61+
f"-DCUSTOM_PLUGIN_VERSION={version}",
6062
"-DCMAKE_BUILD_TYPE=Release",
6163
f"-DENABLE_GEM={'1' if enable_gem else '0'}",
6264
f"-DENABLE_SFIZZ={'1' if enable_sfizz else '0'}",

config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,15 @@
88
"enable_gem": false,
99
"enable_sfizz": false,
1010
"enable_ffmpeg": false
11+
},
12+
{
13+
"name": "the gusher",
14+
"author": "(un)familiar.",
15+
"path": "Plugins/the gusher.zip",
16+
"formats": ["VST3", "AU", "LV2"],
17+
"type": "fx",
18+
"enable_gem": false,
19+
"enable_sfizz": false,
20+
"enable_ffmpeg": false
1121
}
1222
]

plugdata

0 commit comments

Comments
 (0)