Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix xcode project file when building for iOS Simulator #1

Merged
merged 1 commit into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1328,6 +1328,11 @@ int main (const int argc, const char* argv[]) {
settings["ios_provisioning_specifier"] = provSpec;
settings["apple_team_id"] = team;
}
if (flagBuildForSimulator) {
settings["ios_provisioning_profile"] = "\"\"";
settings["ios_provisioning_specifier"] = "";
settings["apple_team_id"] = "\"\"";
}

fs::copy(
fs::path(prefixFile()) / "lib",
Expand Down
2 changes: 1 addition & 1 deletion src/core/runtime-preload-sources.hh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace SSC {
//
// THIS FILE WAS AUTO GENERATED ON: Mon Oct 3 20:03:07 EDT 2022
// THIS FILE WAS AUTO GENERATED ON: Tue Oct 4 11:29:46 +04 2022
//
// This file contains JavaScipt that is injected into the webview before
// any user code is executed.
Expand Down