Skip to content

Commit

Permalink
Change the backends shader compiler dir
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Jun 17, 2024
1 parent 406acec commit 32be1c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions kmake/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ async function compileShader(projectDir: string, type: string, from: string, to:
for (let ld in libdirs) {
let libdir = path.join(libsdir, libdirs[ld]);
if (fs.statSync(libdir).isDirectory()) {
let exe = path.join(libdir, 'krafix', 'krafix-' + platform + '.exe');
let exe = path.join(libdir, 'Tools', 'krafix-' + platform + '.exe');
if (fs.existsSync(exe)) {
compilerPath = exe;
}
Expand Down Expand Up @@ -404,7 +404,7 @@ function compileKong(project: Project, from: string, to: string, platform: strin
for (let ld in libdirs) {
let libdir = path.join(libsdir, libdirs[ld]);
if (fs.statSync(libdir).isDirectory()) {
let exe = path.join(libdir, 'kong', 'kong-' + platform + '.exe');
let exe = path.join(libdir, 'Tools', 'kong-' + platform + '.exe');
if (fs.existsSync(exe)) {
compilerPath = exe;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/kmake/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 32be1c0

Please sign in to comment.