From b661a6f9cf67acb3b957a093d0bcc03127b4a125 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 17 Apr 2023 00:22:37 -0500 Subject: [PATCH] disable console now --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d405d4726..78a68aa83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -792,7 +792,7 @@ endif() if(ANDROID AND NOT TERMUX) add_library(furnace SHARED ${USED_SOURCES}) elseif(WIN32) - add_executable(furnace ${USED_SOURCES}) + add_executable(furnace WIN32 ${USED_SOURCES}) else() add_executable(furnace ${USED_SOURCES}) endif()