This repository has been archived on 2025-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
szun-old/build.rs

7 lines
131 B
Rust

fn main() {
cc::Build::new()
.cpp(true)
.file("src/runtime/lib.cc")
.compile("lib_runtime.a");
}