Skip to content

Instantly share code, notes, and snippets.

@optimalistel
Last active June 30, 2024 18:38
Show Gist options
  • Save optimalistel/dab127b58883b002a5ad to your computer and use it in GitHub Desktop.
Save optimalistel/dab127b58883b002a5ad 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()
@TheXSVV
Copy link

TheXSVV commented Jun 27, 2023

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment