[[PageOutline(1-2,Contents,inline)]] = FAQ -- common tips = == Execution of an application without displaying a command prompt in Microsoft Windows using CMake == === Solution === Add in your CMakeLists.txt : {{{ IF(WIN32) LINK_LIBRARIES(${QT_QTMAIN_LIBRARY}) SET(GUI_TYPE WIN32) ENDIF(WIN32) ... ADD_EXECUTABLE(${PROJECT_NAME} ${GUI_TYPE} ${PROJECT_SRCS} ${PROJECT_MOC_SRCS} ${PROJECT_UI_SRCS}) }}}