forked from XAMPPRocky/tokei
-
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.
add support for Meson (XAMPPRocky#169)
* add support for Meson Fixes: XAMPPRocky#168 Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> * tests: add meson.build Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> * remove unused variable warning: unused variable: `key` --> build.rs:31:10 | 31 | for (key, ref mut item) in json.get_mut("languages") | ^^^ | = note: #[warn(unused_variables)] on by default = note: to avoid this warning, consider using `_key` instead Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
- Loading branch information
1 parent
553736f
commit 01791bd
Showing
4 changed files
with
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -334,6 +334,7 @@ Lucius | |
Madlang | ||
Makefile | ||
Markdown | ||
Meson | ||
ModuleDef | ||
Mustache | ||
Nim | ||
|
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
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,12 @@ | ||
# 12 lines 6 code 2 comments 4 blanks | ||
|
||
project('xyz', 'c', | ||
meson_version : '>=0.30.0') # not counted | ||
|
||
xyz_gen = ''' | ||
# comment inside | ||
print("This is generated source.") | ||
''' | ||
|
||
# this is a comment | ||
|