1 2 3 4 5 6 7
use std::env::current_dir; fn main() { let root_directory = current_dir().expect("Could not find directory."); cpp_pack::pack_project(&root_directory); }