1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(docs): Correct Windows cross compile example command

release/debug is case sensitive, so "Release" causes an error
This commit is contained in:
Anthony Bilinski 2022-02-14 01:02:49 -08:00
parent 9cbf3c0874
commit 0706c90633
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -10,5 +10,5 @@ $ docker compose run windows_builder
# mkdir build-windows # mkdir build-windows
# cd build-windows # cd build-windows
# # Example is using --arch x86_64, --arch i686 should be used if you are in the i686 docker image # # 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
``` ```