Refactored Plot building, various example updates

This commit is contained in:
4bb4 2020-08-08 14:42:22 +02:00
parent 7d09c30892
commit b832924fad
5 changed files with 114 additions and 42 deletions

View file

@ -5,9 +5,10 @@
// for now, but expected to diverge from that over time.
use std::{env, fs, io, path::Path};
const CPP_FILES: [&str; 2] = [
const CPP_FILES: [&str; 3] = [
"third-party/cimplot/cimplot.cpp",
"third-party/cimplot/implot/implot.cpp",
"third-party/cimplot/implot/implot_demo.cpp", // Could remove this if demo not used
];
fn assert_file_exists(path: &str) -> io::Result<()> {