Skip to content

Commit

Permalink
Temporarily disable the console on windows
Browse files Browse the repository at this point in the history
This is preferable to always creating and showing a new console.

Closes #24.

For a complete solution, see #30
  • Loading branch information
hinerm committed Jun 18, 2024
1 parent 8c8867d commit 392c60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/compile-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ case "$(uname)" in
compile gcc -o build/launcher-macos-x64 -framework CoreFoundation -target x86_64-apple-macos10.12 &&
(set -x; lipo -create -output build/launcher build/launcher-macos-x64 build/launcher-macos-arm64)
;;
MINGW*|MSYS*) compile gcc -o build/launcher-windows-x64.exe ;;
MINGW*|MSYS*) compile gcc -o build/launcher-windows-x64.exe -mwindows ;;
*) compile gcc -o build/launcher ;;
esac

0 comments on commit 392c60e

Please sign in to comment.