mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
VST3: Include the name and version in the moduleinfo
This commit is contained in:
parent
af256aab02
commit
7c7e51176e
1 changed files with 3 additions and 0 deletions
|
|
@ -173,6 +173,9 @@ int main()
|
|||
if (auto compatibility = loadCompatibilityFromModule (pluginModule))
|
||||
moduleInfo.compatibility = *compatibility;
|
||||
|
||||
moduleInfo.name = JucePlugin_Name;
|
||||
moduleInfo.version = JucePlugin_VersionString;
|
||||
|
||||
std::stringstream output;
|
||||
Steinberg::ModuleInfoLib::outputJson (moduleInfo, output);
|
||||
std::cout << output.str() << std::endl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue