How to remove terminal window when run gtkmm4 app in Windows

When I run gtkmm4 app in Windows, system first run open terminal window and next run app window, is it possible to run app without terminal window?

Depends on how you build your app. If it is meson, you need to pass “win_subsystem” : “windows” to the executable() call, for cmake it’s set_target_properties( PROPERTIES WIN32_EXECUTABLE TRUE).

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.