From 4399324955e90f166076bb445365c0e397046e6d Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Fri, 25 Dec 2020 21:41:49 +0100 Subject: [PATCH] Disables precompiled headers by default (#9499) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 974231c398..dc2d8c38ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ option(USE_LIBEVDEV "libevdev-based joystick support" ON) option(USE_DISCORD_RPC "Discord rich presence integration" ON) option(USE_SYSTEM_ZLIB "Prefer system ZLIB instead of the builtin one" ON) option(USE_VULKAN "Vulkan render backend" ON) -option(USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) +option(USE_PRECOMPILED_HEADERS "Use precompiled headers" OFF) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/rpcs3/cmake_modules")