Skip to content

Commit

Permalink
Statically link vcruntime on Win
Browse files Browse the repository at this point in the history
  • Loading branch information
soir20 committed May 21, 2022
1 parent 02b9091 commit a796e48
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
target: x86_64-unknown-linux-gnu
extension: ""
description: 64-bit Linux
- os: ubuntu-latest
target: i686-pc-windows-gnu
- os: windows-latest
target: i686-pc-windows-msvc
extension: .exe
description: 32-bit Windows
- os: ubuntu-latest
target: x86_64-pc-windows-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
extension: .exe
description: 64-bit Windows
- os: macos-latest
Expand Down
9 changes: 8 additions & 1 deletion Cargo.lock

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

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
name = "frame-reverse"
description = "CLI to reverse frames in a texture for a MoreMcmeta animation."
authors = ["soir20"]
version = "1.0.0"
version = "1.0.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "3.1.15", features = ["derive"] }
image = "0.24.2"
image = "0.24.2"

[build-dependencies]
static_vcruntime = "2.0.0"
3 changes: 3 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
static_vcruntime::metabuild();
}

0 comments on commit a796e48

Please sign in to comment.