mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-09 04:30:09 +00:00
Added an AU header path.
This commit is contained in:
parent
6b027c4b17
commit
36ce338d98
3 changed files with 6 additions and 3 deletions
|
|
@ -419,6 +419,7 @@ namespace AUHelpers
|
|||
{
|
||||
exporter.extraSearchPaths.add ("$(DEVELOPER_DIR)/Extras/CoreAudio/PublicUtility");
|
||||
exporter.extraSearchPaths.add ("$(DEVELOPER_DIR)/Extras/CoreAudio/AudioUnits/AUPublic/Utility");
|
||||
exporter.extraSearchPaths.add ("$(DEVELOPER_DIR)/Extras/CoreAudio/AudioUnits/AUPublic/AUBase");
|
||||
|
||||
exporter.xcodeFrameworks.addTokens ("AudioUnit CoreAudioKit", false);
|
||||
exporter.xcodeExcludedFiles64Bit = "\"*Carbon*.cpp\"";
|
||||
|
|
@ -479,7 +480,7 @@ namespace AUHelpers
|
|||
JUCE_AU_PUBLIC "Utility/AUSilentTimeout.h",
|
||||
JUCE_AU_PUBLIC "Utility/AUTimestampGenerator.h", 0 };
|
||||
|
||||
for (const char** f = appleAUFiles; *f != 0; ++f)
|
||||
for (const char** f = appleAUFiles; *f != nullptr; ++f)
|
||||
{
|
||||
const RelativePath file (*f, RelativePath::projectFolder);
|
||||
subGroup.addRelativeFile (file, -1, file.hasFileExtension ("cpp;mm"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue