mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added support for building Unity native audio plugins on desktop platforms
This commit is contained in:
parent
30f6206be9
commit
527625b699
32 changed files with 1599 additions and 53 deletions
|
|
@ -244,8 +244,12 @@ public:
|
|||
String getName() const { return configNameValue.get(); }
|
||||
bool isDebug() const { return isDebugValue.get(); }
|
||||
|
||||
String getTargetBinaryNameString() const { return targetNameValue.get(); }
|
||||
String getTargetBinaryRelativePathString() const { return targetBinaryPathValue.get(); }
|
||||
String getTargetBinaryNameString (bool isUnityPlugin = false) const
|
||||
{
|
||||
return (isUnityPlugin ? Project::addUnityPluginPrefixIfNecessary (targetNameValue.get().toString())
|
||||
: targetNameValue.get().toString());
|
||||
}
|
||||
|
||||
int getOptimisationLevelInt() const { return optimisationLevelValue.get(); }
|
||||
String getGCCOptimisationFlag() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue