mandelbrot-rust/build.rs
2022-01-10 20:35:44 +01:00

8 lines
No EOL
146 B
Rust

use cuda_builder::CudaBuilder;
fn main() {
CudaBuilder::new("./gpu")
.copy_to("target/gpu.ptx")
.build()
.unwrap();
}