Mirror of
forum.nim-lang.org
index
9046 :: Excuse me, how to hide the console window of the program?
[2022-03-25T23:00:35+01:00]
View Orginal
luyimoon
(orginal)
[2022-03-25T23:00:35+01:00]
view original
My game program is built using nim-raylib. After running, there will be a console window, How can I hide this console window? My compile command is
"
nim c -r textures_sprite_button.nim
"
DavideGalilei
(orginal)
[2022-03-25T23:04:54+01:00]
view original
Have you tried with
--app:gui
yet?
https://nim-lang.org/docs/nimc.html
luyimoon
(orginal)
[2022-03-26T11:48:40+01:00]
view original
thanks