https://github.com/matchachoco010/ggez-windows-path
https://github.com/matchachoco010/ggez-windows-path
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/matchachoco010/ggez-windows-path
- Owner: MatchaChoco010
- Created: 2021-08-08T02:22:32.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T02:40:00.000Z (almost 5 years ago)
- Last Synced: 2025-02-13T02:26:37.091Z (over 1 year ago)
- Language: Rust
- Size: 197 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ggez with resources.zip and windows path
- ggez version: 0.6.0
- rustc version: 1.54.0
- cargo version: 1.54.0
- windows 10 Pro
The following command works fine. (non zip additional `resources/` dir)
```
$ cargo run --release
```
However, if I create `resources.zip` and `game.exe` and run `game.exe` as follows on Windows, it does not work. (`resources.zip`!)
```
$ cargo install --force cargo-make
$ cargo make
$ cd archive
$ ./game.exe
```
... And unzip `resources.zip` to `resources/`, then work fine. (`resources/` dir)
```
$ ./game.exe
```