/*
* SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION.
* SPDX-License-Identifier: Apache-2.0
*/usestd::env;fnmain(){// add the required rpath-link flags to the cargo build
// TODO: ... this isn't great, there must be a way to propagate this directly without hacks like
// this
let cmake_linker_flags =env::var("DEP_CUVS_CMAKE_LINKER_FLAGS").unwrap();for flag in cmake_linker_flags.split(''){if flag.starts_with("-Wl,-rpath-link"){println!("cargo:rustc-link-arg={}", flag);}}}