How can I get rid of the console window in windows...
# kotlin-native
a
How can I get rid of the console window in windows? I write nothing into console
m
linkerOpts("-mwindows")
a
Thaks! Am I miss this in the documentation or it doesn't contain this?
m
It's from MinGW FAQ:
How do I remove DOS command windows?
In the link step add a "-mwindows" switch to the command line.
a
DOS command
😄 Thank you