14 lines
381 B
Rust
14 lines
381 B
Rust
// SPDX-License-Identifier: 0BSD, MIT
|
|
/*
|
|
* advotracker - Hotline tackingtool for Advocats
|
|
*
|
|
* Copyright 2020-2021 Ralf Zerres <ralf.zerres@networkx.de>
|
|
*/
|
|
|
|
fn main() {
|
|
println!("hey cargo");
|
|
//println!("cargo:rustc-link-lib=dylib=advotracker_db.so");
|
|
println!("cargo:rustc-link-args=-Wl,-rpath=$ORIGIN");
|
|
//println!("cargo:rustc-link-search=native=$ORIGIN");
|
|
}
|