Skip to content

Commit

Permalink
[cxx-parser] Allow add prefix to the build directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
littleGnAl committed Mar 4, 2024
1 parent ef1f605 commit 99a5c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cxx-parser/src/cxx_parser_configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ export class CXXParserConfigs {
.flat(1),
definesMacros: original.definesMacros ?? [],
parseFiles: {
include: (original.parseFiles.include ?? [])
include: (original.parseFiles?.include ?? [])
.map((it) => {
return _resolvePaths(it, configDir);
})
.flat(1),
exclude: (original.parseFiles.exclude ?? [])
exclude: (original.parseFiles?.exclude ?? [])
.map((it) => {
return _resolvePaths(it, configDir);
})
Expand Down

0 comments on commit 99a5c0f

Please sign in to comment.