Verilog Filelist Parser
A library in Rust to parse a Verilog Filelist and return a list of files, include directories and defines.
Environment variables represented with paranthesis or curly braces (i.e. $() or ${}) will be automatically substituted.
Example
use verilog_filelist_parser;
let filelist = parse_file
.expect;
for file in filelist.files
for incdir in filelist.incdirs
for in filelist.defines