Skip to content

Commit

Permalink
Always use plugin embed
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Jan 19, 2024
1 parent 603d540 commit ca96a89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ flags.vulkan = process.argv.indexOf("vulkan") >= 0;
flags.metal = process.argv.indexOf("metal") >= 0;
flags.raytrace = flags.d3d12 || flags.vulkan || flags.metal;
flags.snapshot = process.argv.indexOf("--snapshot") >= 0;
flags.plugin_embed = flags.ios;
flags.plugin_embed = true; // flags.ios;
flags.physics = !flags.ios;
flags.voxels = !flags.raytrace && !flags.android && !flags.ios;

Expand All @@ -28,9 +28,9 @@ flags.on_c_project_created = async function(c_project, platform, graphics) {
c_project.addDefine("KORE_VKRT");
await c_project.addProject("../" + dir + "/glsl_to_spirv");
}
if (platform === "ios") {
// if (platform === "ios") {
flags.with_plugin_embed = true;
}
// }

if (flags.with_onnx) {
c_project.addDefine("WITH_ONNX");
Expand Down

0 comments on commit ca96a89

Please sign in to comment.