-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump imgui to 0.12 and version to 0.7 (#189)
Due to a panic (see imgui-rs/imgui-rs#775), unreleased as of 0.12, this PR points to a specific commit. This will be reverted once the fix is released.
- Loading branch information
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Contributing | ||
|
||
I want to turn this into a suitable guide for new contributors, but we're not there yet. Sorry :( | ||
|
||
## Testing on Linux | ||
|
||
On Linux, the default cross compilation target is `x86_64-pc-windows-gnu`. Cross compilation | ||
is necessary due to DirectX being Windows only. It is recommended to also install the 32-bit | ||
target. | ||
|
||
``` | ||
rustup target add x86_64-pc-windows-gnu | ||
rustup target add i686-pc-windows-gnu | ||
``` | ||
|
||
To run tests in Wine, it is necessary to install your distribution's mingw32 package, and add | ||
the DLL paths to `$WINEPATH`: | ||
|
||
``` | ||
export WINEPATH=/usr/x86_64-w64-mingw32/bin | ||
``` | ||
|
||
Your path could be different, depending on where your distribution installs the packages. | ||
The one above is valid on Manjaro; the `mingw-w64-*` packages are the ones to install. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters