Skip to content

Commit

Permalink
Merge pull request #91 from golemfactory/statically_linked_vcruntime
Browse files Browse the repository at this point in the history
Statically linked VCRuntime
  • Loading branch information
nieznanysprawiciel authored Apr 5, 2024
2 parents f1d1c0f + f2ccda6 commit 4c51b54
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ predicates = "3.1"

[patch.crates-io]
ya-core-model = { git = "https://github.com/golemfactory/yagna.git", rev = "9c5f97945d5b4ab3d36c23d0645e468b255974dc" }

[build-dependencies]
static_vcruntime = "2.0"
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
// Without statically linked VCRuntime the app will require Visual C++ Redistributable installed on host OS.
static_vcruntime::metabuild();
}

0 comments on commit 4c51b54

Please sign in to comment.