summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/proc-macro-srv-cli/build.rs
blob: 07f914fece0e242e1f4c354fce87bbed2b8a52a9 (plain)
1
2
3
4
5
//! This teaches cargo about our cfg(rust_analyzer)

fn main() {
    println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
}