File: build.rs

package info (click to toggle)
rust-rayon-core 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 528 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (93)
1
2
3
4
5
6
7
// We need a build script to use `link = "rayon-core"`.  But we're not
// *actually* linking to anything, just making sure that we're the only
// rayon-core in use.
fn main() {
    // we don't need to rebuild for anything else
    println!("cargo:rerun-if-changed=build.rs");
}