-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix parsing scoped filename variables.
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
arguments .. | ||
file input <> | ||
input | ||
end-of-inline-data | ||
file input-2 <> | ||
input 2 | ||
end-of-inline-data | ||
file build.fninja <> | ||
version = 2 | ||
sources := | ||
input | ||
input-$version | ||
output | ||
|
||
rule a | ||
command = a $in $out | ||
flags = --verbose | ||
|
||
build output: a input | ||
build final: a $sources | ||
end-of-inline-data | ||
file build/build.ninja {} <> | ||
# This file is automatically created by fast-ninja from ../build.fninja | ||
# Do not edit. | ||
version = 2 | ||
|
||
rule a | ||
command = a $in $out | ||
flags = --verbose | ||
|
||
rule fast-ninja | ||
command = fast-ninja .. | ||
generator = 1 | ||
|
||
build output : a ../input | ||
|
||
build final : a ../input ../input-2 output | ||
|
||
build build.ninja : fast-ninja ../build.fninja | ||
end-of-inline-data |