vm_test_fixture 0.1.1

Runs a VM for use in tests
Documentation
1
2
3
4
5
6
7
8
// Copyright 2023 Remi Bernotavicius

use std::env;

fn main() {
    let out_dir = env::var("OUT_DIR").unwrap();
    println!("cargo:rustc-env=OUT_DIR={out_dir}");
}