Skip to content

Commit b34477c

Browse files
committed
fix(cli): fix missing interp'd vars
1 parent 04e4101 commit b34477c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/cli/main.cc

+17
Original file line numberDiff line numberDiff line change
@@ -2251,6 +2251,10 @@ int main (int argc, char* argv[]) {
22512251
settings["arch"] = replace(platform.arch, "x86_64", "amd64");
22522252
}
22532253

2254+
if (settings["meta_copyright"].empty()) {
2255+
settings["meta_copyright"] = "(c) " + settings["meta_title"] + " 2025";
2256+
}
2257+
22542258
subcommandHandler(optionsAndEnv.optionsWithValue, optionsAndEnv.optionsWithoutValue);
22552259
}
22562260
};
@@ -4829,6 +4833,19 @@ int main (int argc, char* argv[]) {
48294833
}
48304834
}
48314835

4836+
if (settings["ios_category"].empty()) {
4837+
settings["ios_category"] = "public.app-category.developer-tools";
4838+
}
4839+
4840+
if (settings["ios_protocol"].empty()) {
4841+
settings["ios_protocol"] = settings["meta_application_protocol"];
4842+
}
4843+
4844+
xCodeProjectVariables["ios_project_version"] = settings["ios_project_version"];
4845+
xCodeProjectVariables["ios_deployment_target"] = settings["ios_deployment_target"];
4846+
xCodeProjectVariables["ios_category"] = settings["ios_category"];
4847+
xCodeProjectVariables["ios_protocol"] = settings["ios_protocol"];
4848+
48324849
writeFile(paths.platformSpecificOutputPath / "exportOptions.plist", tmpl(gXCodeExportOptions, settings));
48334850
writeFile(paths.platformSpecificOutputPath / "Info.plist", tmpl(gIOSInfoPList, settings));
48344851
writeFile(pathToProject / "project.pbxproj", tmpl(gXCodeProject, xCodeProjectVariables));

0 commit comments

Comments
 (0)