From fe132e6ef3298ccfca0b7cd11041d1e829c8432d Mon Sep 17 00:00:00 2001 From: Miguel <81558772+Miguel-hrvs@users.noreply.github.com> Date: Thu, 11 Apr 2024 16:09:49 +0200 Subject: [PATCH] disable precompiled headers as default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 87a485e5d..5d4a4f527 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,7 +88,7 @@ option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF) # Compile options CMAKE_DEPENDENT_OPTION(COMPILE_WITH_DWARF "Add DWARF debugging information" ${IS_DEBUG_BUILD} "MINGW" OFF) option(ENABLE_LTO "Enable link time optimization" ${DEFAULT_ENABLE_LTO}) -option(CITRA_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) +option(CITRA_USE_PRECOMPILED_HEADERS "Use precompiled headers" OFF) option(CITRA_WARNINGS_AS_ERRORS "Enable warnings as errors" ON) include(CitraHandleSystemLibs)