verilog-filelist-parser

Crates.ioverilog-filelist-parser
lib.rsverilog-filelist-parser
version0.1.2
sourcesrc
created_at2020-02-02 16:41:21.296987
updated_at2020-02-20 16:30:17.975559
descriptionA library to parse a Verilog Filelist and return a list of files, include directories and defines
homepage
repositoryhttps://github.com/Raamakrishnan/verilog-filelist-parser
max_upload_size
id204247
size14,569
Raamakrishnan A. (Raamakrishnan)

documentation

README

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 = verilog_filelist_parser::parse_file("testcase/files.f")
    .expect("Cannot read filelist");
for file in filelist.files {
    println!("{:?}", file);
}
for incdir in filelist.incdirs {
    println!("{:?}", incdir);
}
for (d, t) in filelist.defines {
    match t {
        None => println!("{:?}", d),
        Some(te) => println!("{:?}={:?}", d, te),
    };
}
Commit count: 37

cargo fmt