From 2df3b20a20653bbe7aebf07db5a4710f66ac6100 Mon Sep 17 00:00:00 2001 From: Julius Michaelis Date: Sun, 17 Feb 2013 17:00:33 +0100 Subject: [PATCH] CMake: Adjust precompiles headers to new build division --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 911a242fa..662ed7fd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1261,9 +1261,9 @@ if(CMAKE_COMPILER_IS_GNUCXX) option(USE_GCC_PCH "Use GCC precompiled headers" ON) endif() if(USE_GCC_PCH) + add_precompiled_header(libmisc src/C4Include.h) + add_precompiled_header(libc4script src/C4Include.h) add_precompiled_header(openclonk src/C4Include.h) - add_precompiled_header(c4group src/C4Include.h) - add_precompiled_header(c4script src/C4Include.h) endif() ############################################################################