Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Ligh7bringer/3799f76a5542f070b1879fb13df75d2f to your computer and use it in GitHub Desktop.
Save Ligh7bringer/3799f76a5542f070b1879fb13df75d2f to your computer and use it in GitHub Desktop.
CMake Hide console window in visual studio projects
#--------------------------------------------------------------------
# Hide the console window in visual studio projects
#--------------------------------------------------------------------
if(MSVC)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup")
endif()
#--------------------------------------------------------------------
# Hide the console window in visual studio projects - Release
#--------------------------------------------------------------------
if(MSVC)
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup")
endif()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment