External scanner

This commit is contained in:
Mark Skelton
2023-01-06 22:28:56 -06:00
parent 9990002deb
commit eea8ccc79d
2 changed files with 153 additions and 2 deletions
-2
View File
@@ -25,7 +25,6 @@ fn main() {
// If your language uses an external scanner written in C++,
// then include this block of code:
/*
let mut cpp_config = cc::Build::new();
cpp_config.cpp(true);
cpp_config.include(&src_dir);
@@ -36,5 +35,4 @@ fn main() {
cpp_config.file(&scanner_path);
cpp_config.compile("scanner");
println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());
*/
}