We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you create a single file exe on windows, e.g., with
bun build ./index.ts --compile --outfile myexe
and then double-click on the exe, a terminal window is opened.
In a zig program for Windows, you can prevent this terminal by adding to your build.zig file:
build.zig
exe.subsystem = .Windows;
It would be great if you could do something like:
bun build ./index.ts --compile --exe_subsystem_windows --outfile myexe
to avoid the terminal window.
No response
The text was updated successfully, but these errors were encountered:
Tracked in #13084, follow that issue for updates
Sorry, something went wrong.
No branches or pull requests
What is the problem this feature would solve?
When you create a single file exe on windows, e.g., with
and then double-click on the exe, a terminal window is opened.
What is the feature you are proposing to solve the problem?
In a zig program for Windows, you can prevent this terminal by adding to your
build.zig
file:It would be great if you could do something like:
to avoid the terminal window.
What alternatives have you considered?
No response
The text was updated successfully, but these errors were encountered: