Skip to content

Instantly share code, notes, and snippets.

View WhiteCharacter's full-sized avatar
💭
Never busy, never late

WhiteCharacter

💭
Never busy, never late
View GitHub Profile
@optimalistel
optimalistel / CMakeHideConsole.cmake
Last active June 30, 2024 18:38
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
#--------------------------------------------------------------------