1
0
Fork 0
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:
reuk 2023-02-07 14:43:05 +00:00
parent a59cba010b
commit 8d87c8c6c3
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -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;
});
}