mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Insert android custom libraries names directly, rather than as variables
This commit is contained in:
parent
a59cba010b
commit
8d87c8c6c3
1 changed files with 3 additions and 1 deletions
|
|
@ -608,7 +608,6 @@ private:
|
|||
mo << newLine;
|
||||
}
|
||||
|
||||
libraries.addArray (userLibraries);
|
||||
mo << "target_link_libraries( ${BINARY_NAME}";
|
||||
if (libraries.size() > 0)
|
||||
{
|
||||
|
|
@ -623,6 +622,9 @@ private:
|
|||
if (useOboe)
|
||||
mo << " \"oboe\"" << newLine;
|
||||
|
||||
for (auto& lib : userLibraries)
|
||||
mo << " [[" << lib << "]]" << newLine;
|
||||
|
||||
mo << ")" << newLine;
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue