mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
12 lines
280 B
Rust
12 lines
280 B
Rust
|
// Copyright 2018-2025 the Deno authors. MIT license.
|
||
|
|
||
|
fn main() {
|
||
|
// Skip building from docs.rs.
|
||
|
if std::env::var_os("DOCS_RS").is_some() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
deno_runtime::deno_napi::print_linker_flags("denort");
|
||
|
deno_runtime::deno_webgpu::print_linker_flags("denort");
|
||
|
}
|