Skip to content

Commit

Permalink
-target -> --target
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jan 4, 2025
1 parent cac7ecc commit 763d072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function buildDawnNode() {
...addElemIf(isMac, '-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'),
]);
if (isWin) {
await execute('cmake', ['--build', '.', '-target', 'dawn.node'])
await execute('cmake', ['--build', '.', '--target', 'dawn.node'])
} else {
await execute('ninja', ['dawn.node']);
}
Expand Down

0 comments on commit 763d072

Please sign in to comment.