diff options
author | syn <isaqtm@gmail.com> | 2021-01-07 23:55:03 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2021-01-07 23:55:03 +0300 |
commit | 81b1b867ec410519662b5da9e81f347fbca6f9c7 (patch) | |
tree | 9a0ff2aa39b666d785a71f9303f589c7f3a301fe | |
parent | 7d1fedd11c02924f493760d07e44bd9374643e31 (diff) | |
download | tdlib-sys-81b1b867ec410519662b5da9e81f347fbca6f9c7.tar.gz |
Fix link path
-rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |