summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsyn <isaqtm@gmail.com>2021-01-07 23:55:03 +0300
committersyn <isaqtm@gmail.com>2021-01-07 23:55:03 +0300
commit81b1b867ec410519662b5da9e81f347fbca6f9c7 (patch)
tree9a0ff2aa39b666d785a71f9303f589c7f3a301fe
parent7d1fedd11c02924f493760d07e44bd9374643e31 (diff)
downloadtdlib-sys-81b1b867ec410519662b5da9e81f347fbca6f9c7.tar.gz
Fix link path
-rw-r--r--build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index ce25041..89c0f6d 100644
--- a/build.rs
+++ b/build.rs
@@ -16,7 +16,7 @@ fn build_tdlib() {
}
let dst = config.build();
- println!("cargo:rustc-link-search={}", dst.display()); // tdlib_path.to_string_lossy());
+ println!("cargo:rustc-link-search={}/lib", dst.display());
}
fn guess_openssl_location() -> PathBuf {