From 83b4e3f988ddade40ae429623b5952959fe80fb5 Mon Sep 17 00:00:00 2001 From: dpasukhi Date: Sun, 13 Oct 2024 09:02:57 +0000 Subject: [PATCH] Configuration - Option to disable PCH after enabling #102 After enabling PCH it was not possible to disable back. New CMake feature used for disabling --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e90744ba76..8507b7fb15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,6 +150,10 @@ endif() if (CMAKE_VERSION VERSION_LESS "3.16") OCCT_CHECK_AND_UNSET (BUILD_USE_PCH) +elseif (NOT BUILD_USE_PCH) + set (CMAKE_DISABLE_PRECOMPILE_HEADERS ON) +else () + set (CMAKE_DISABLE_PRECOMPILE_HEADERS OFF) endif() if (NOT DEFINED BUILD_INCLUDE_SYMLINK)