Skip to content

Commit

Permalink
ninja is added to path so it should work, still investigating
Browse files Browse the repository at this point in the history
  • Loading branch information
gcampbell-msft committed Sep 16, 2024
1 parent 3673965 commit 74b45fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit-tests/driver/driver-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function makeDriverTestsuite(driverName: string, driver_generator: (cmake
preferredGenerator: { name: 'Ninja' }
} as Kit;
} else {
ninjaKitDefault = { name: 'GCC', compilers: { C: 'gcc', CXX: 'g++' }, preferredGenerator: { name: process.platform === "darwin" ? 'Unix Makefiles' : 'Ninja' }, isTrusted: true } as Kit;
ninjaKitDefault = { name: 'GCC', compilers: { C: 'gcc', CXX: 'g++' }, preferredGenerator: { name: 'Ninja' }, isTrusted: true } as Kit;
}
let secondaryKit: Kit;
if (process.platform === 'win32') {
Expand Down

0 comments on commit 74b45fd

Please sign in to comment.