mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
Dub: Exclude root, lexer and parser source files from frontend
This commit is contained in:
parent
a3449e71ef
commit
ff944fcd0f
1 changed files with 21 additions and 1 deletions
22
dub.sdl
22
dub.sdl
|
@ -28,7 +28,8 @@ subPackage {
|
|||
"src/dmd/identifier.d" \
|
||||
"src/dmd/lexer.d" \
|
||||
"src/dmd/tokens.d" \
|
||||
"src/dmd/utf.d"
|
||||
"src/dmd/utf.d" \
|
||||
"src/dmd/utils.d"
|
||||
|
||||
preGenerateCommands `
|
||||
"$${DUB_EXE}" \
|
||||
|
@ -75,6 +76,25 @@ subPackage {
|
|||
"MARS"
|
||||
|
||||
excludedSourceFiles "src/dmd/backend/*"
|
||||
excludedSourceFiles "src/dmd/root/*"
|
||||
excludedSourceFiles "src/dmd/{\
|
||||
astbase,\
|
||||
console,\
|
||||
entity,\
|
||||
errors,\
|
||||
filecache,\
|
||||
globals,\
|
||||
id,\
|
||||
identifier,\
|
||||
lexer,\
|
||||
parse,\
|
||||
permissivevisitor,\
|
||||
strictvisitor,\
|
||||
tokens,\
|
||||
transitivevisitor,\
|
||||
utf,\
|
||||
utils\
|
||||
}.d"
|
||||
excludedSourceFiles "src/dmd/{\
|
||||
dmsc,\
|
||||
e2ir,\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue