qmake: Place Info.plist in correct location for plugin bundles
Like application bundles on OSX, the plugin bundle has its Info.plist in the Contents directory. Change-Id: I216fa79857924beb0e9c5fcc4a8d06b197a3f383 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
parent
5926d7422e
commit
34adfc1372
@ -807,11 +807,10 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t)
|
||||
} else {
|
||||
info_plist = escapeFilePath(fileFixify(info_plist));
|
||||
}
|
||||
bool isApp = (project->first("TEMPLATE") == "app");
|
||||
QString info_plist_out =
|
||||
bundle_dir + (isApp ? "Contents/Info.plist"
|
||||
: "Versions/" + project->first("QMAKE_FRAMEWORK_VERSION")
|
||||
+ "/Resources/Info.plist");
|
||||
bool isFramework = project->first("TEMPLATE") == "lib" && project->isActiveConfig("lib_bundle");
|
||||
QString info_plist_out = bundle_dir +
|
||||
(isFramework ? ("Versions/" + project->first("QMAKE_FRAMEWORK_VERSION") + "/Resources/Info.plist")
|
||||
: "Contents/Info.plist");
|
||||
bundledFiles << info_plist_out;
|
||||
alldeps << info_plist_out;
|
||||
QString destdir = info_plist_out.section(Option::dir_sep, 0, -2);
|
||||
@ -842,7 +841,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t)
|
||||
bundleIdentifier.chop(10);
|
||||
commonSedArgs << "-e \"s,@BUNDLEIDENTIFIER@," << bundleIdentifier << ",g\" ";
|
||||
|
||||
if (isApp) {
|
||||
if (!isFramework) {
|
||||
QString icon = fileFixify(var("ICON"));
|
||||
t << "@$(DEL_FILE) " << info_plist_out << "\n\t"
|
||||
<< "@sed ";
|
||||
@ -850,6 +849,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t)
|
||||
t << arg;
|
||||
t << "-e \"s,@ICON@," << icon.section(Option::dir_sep, -1) << ",g\" "
|
||||
<< "-e \"s,@EXECUTABLE@," << var("QMAKE_ORIG_TARGET") << ",g\" "
|
||||
<< "-e \"s,@LIBRARY@," << var("QMAKE_ORIG_TARGET") << ",g\" "
|
||||
<< "-e \"s,@TYPEINFO@,"<< (project->isEmpty("QMAKE_PKGINFO_TYPEINFO") ?
|
||||
QString::fromLatin1("????") : project->first("QMAKE_PKGINFO_TYPEINFO").left(4)) << ",g\" "
|
||||
<< "" << info_plist << " >" << info_plist_out << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user