CREATE_PROJECT: Clarify license on imported code

License confirmed by personal email by littleboy.
This clarification was requested in bug #3527268.
This commit is contained in:
Willem Jan Palenstijn 2012-06-24 18:17:47 +02:00
parent 20b6770808
commit 478fd0ed29

View file

@ -871,7 +871,9 @@ std::string XCodeProvider::writeProperty(const std::string &variable, Property &
std::string XCodeProvider::writeSetting(const std::string &variable, std::string value, std::string comment, int flags, int indent) const {
return writeSetting(variable, Setting(value, comment, flags, indent));
}
// Heavily modified (not in a good way) function, imported from QMake XCode project generator (licensed under the QT license)
// Heavily modified (not in a good way) function, imported from the QMake
// XCode project generator pbuilder_pbx.cpp, writeSettings() (under LGPL 2.1)
std::string XCodeProvider::writeSetting(const std::string &variable, const Setting &setting) const {
std::string output;
const std::string quote = (setting.flags & SettingsNoQuote) ? "" : "\"";