Skip to content

Commit

Permalink
Statically link CRT
Browse files Browse the repository at this point in the history
  • Loading branch information
agersant committed Mar 10, 2023
1 parent f4d934d commit 5f54758
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- [x] ⚠ Tiger files saved with version 0.7.0 and older are no longer supported
- [x] Tiger file format version was is now `1.0.0`
- [x] Fixed a bug where on some computers, Tiger wouldn't launch due to missing MSVCP140.dll
- [x] Add up-to-date screenshots in readme
- [x] Add video in readme
- [x] Remove under-development warning from readme
Expand Down
7 changes: 7 additions & 0 deletions src-tauri/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Statically link C runtime so users don't need MSVCP140.dll (and friends)
[target.x86_64-pc-windows-msvc]
rustflags = ["-C","target-feature=+crt-static"]

# Disable tauri feature trying to accomplish the same thing
[env]
STATIC_VCRUNTIME = "false"

0 comments on commit 5f54758

Please sign in to comment.