An open API service indexing awesome lists of open source software.

https://github.com/matchachoco010/ggez-windows-path


https://github.com/matchachoco010/ggez-windows-path

Last synced: about 1 year ago
JSON representation

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
```