Browse Source

fix(docs): Correct Windows cross compile example command

release/debug is case sensitive, so "Release" causes an error
reviewable/pr6439/r1
Anthony Bilinski 3 years ago
parent
commit
0706c90633
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      windows/cross-compile/README.md

2
windows/cross-compile/README.md

@ -10,5 +10,5 @@ $ docker compose run windows_builder @@ -10,5 +10,5 @@ $ docker compose run windows_builder
# mkdir build-windows
# cd build-windows
# # Example is using --arch x86_64, --arch i686 should be used if you are in the i686 docker image
# /qtox/windows/cross-compile/build.sh --src-dir /qtox --arch x86_64 --build-type Release
# /qtox/windows/cross-compile/build.sh --src-dir /qtox --arch x86_64 --build-type release
```

Loading…
Cancel
Save