Peter Atashian

Results 131 comments of Peter Atashian

Actually `pyuic5.bat` and `pyrcc5.exe` exist in `A:\msys64\mingw64\bin`.

``` $ python3 build.py The system cannot find the path specified. The system cannot find the path specified. The system cannot find the path specified. The system cannot find the...

Something like `ComPtr::clone_from_raw`?

Note that Windows has an alternative way of locking files by **not** passing `FILE_SHARE_READ` or `FILE_SHARE_WRITE` when opening the file, which is compatible with whatever access flags you pass, and...

@nox That enables features in *code* programmatically. It doesn't let me control *dependencies*, but for some people just controlling their code might be enough. The reason I even wrote that...

I'm so glad I'm using Rust for my own projects nowadays and not C++, so I don't have to deal with this dependency building hell.

I have started a middle level wrapper around the Windows console API in `wio` which should make implementing support here much nicer as you won't have to muck about with...

The concept of a terminal being a grid of cells is exactly how the native Windows console works. While the low level details would need to be swapped out entirely...

A good thing to point out here is that you used `i686-pc-windows-gnu` for the host and `x86_64-pc-windows-msvc` for the target so it is a cross compile.