https://git.reactos.org/?p=reactos.git;a=commitdiff;h=11d11cf6d07aaee4714a15eb97488ca81aaaadae

commit 11d11cf6d07aaee4714a15eb97488ca81aaaadae
Author:     Hervé Poussineau <hpous...@reactos.org>
AuthorDate: Sun Apr 7 21:00:33 2019 +0200
Commit:     Hervé Poussineau <hpous...@reactos.org>
CommitDate: Sun Apr 7 21:00:49 2019 +0200

    [CMAKE] Temporarly disable pch in some modules to fix travis-ci
    
    Problem appeared after 09c4d0a74b2362e2c9d29ec87c54ecc3bddd5b79
---
 base/applications/winhlp32/CMakeLists.txt      | 2 +-
 dll/directx/wine/d3dcompiler_43/CMakeLists.txt | 2 +-
 dll/win32/jscript/CMakeLists.txt               | 2 +-
 dll/win32/msi/CMakeLists.txt                   | 2 +-
 dll/win32/msxml3/CMakeLists.txt                | 2 +-
 dll/win32/vbscript/CMakeLists.txt              | 2 +-
 dll/win32/wbemprox/CMakeLists.txt              | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/base/applications/winhlp32/CMakeLists.txt 
b/base/applications/winhlp32/CMakeLists.txt
index 9a17ba1a13..e248a0e18a 100644
--- a/base/applications/winhlp32/CMakeLists.txt
+++ b/base/applications/winhlp32/CMakeLists.txt
@@ -23,5 +23,5 @@ add_executable(winhlp32 ${SOURCE} string.c rsrc.rc)
 set_module_type(winhlp32 win32gui)
 target_link_libraries(winhlp32 wine)
 add_importlibs(winhlp32 user32 gdi32 shell32 comctl32 comdlg32 msvcrt kernel32 
ntdll)
-add_pch(winhlp32 precomp.h SOURCE)
+#add_pch(winhlp32 precomp.h SOURCE)
 add_cd_file(TARGET winhlp32 DESTINATION reactos FOR all)
diff --git a/dll/directx/wine/d3dcompiler_43/CMakeLists.txt 
b/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
index 7091dc22cf..7c5cb42840 100644
--- a/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
+++ b/dll/directx/wine/d3dcompiler_43/CMakeLists.txt
@@ -38,5 +38,5 @@ set_module_type(d3dcompiler_43 win32dll)
 target_link_libraries(d3dcompiler_43 dx10guid uuid wine wpp)
 add_importlibs(d3dcompiler_43 msvcrt kernel32 ntdll)
 add_dependencies(d3dcompiler_43 d3d_idl_headers)
-add_pch(d3dcompiler_43 precomp.h SOURCE)
+#add_pch(d3dcompiler_43 precomp.h SOURCE)
 add_cd_file(TARGET d3dcompiler_43 DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/jscript/CMakeLists.txt b/dll/win32/jscript/CMakeLists.txt
index 7f0a036af5..c97df1f8d4 100644
--- a/dll/win32/jscript/CMakeLists.txt
+++ b/dll/win32/jscript/CMakeLists.txt
@@ -57,5 +57,5 @@ add_dependencies(jscript jscript_idlheader stdole2)
 set_module_type(jscript win32dll)
 target_link_libraries(jscript uuid wine)
 add_importlibs(jscript user32 ole32 oleaut32 advapi32 msvcrt kernel32 ntdll)
-add_pch(jscript precomp.h SOURCE)
+#add_pch(jscript precomp.h SOURCE)
 add_cd_file(TARGET jscript DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/msi/CMakeLists.txt b/dll/win32/msi/CMakeLists.txt
index 10d1fb1797..be27062273 100644
--- a/dll/win32/msi/CMakeLists.txt
+++ b/dll/win32/msi/CMakeLists.txt
@@ -76,5 +76,5 @@ add_importlibs(msi advapi32 advapi32_vista cabinet comctl32 
gdi32 ole32 oleaut32
     kernel32
     ntdll)
 
-add_pch(msi precomp.h SOURCE)
+#add_pch(msi precomp.h SOURCE)
 add_cd_file(TARGET msi DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/msxml3/CMakeLists.txt b/dll/win32/msxml3/CMakeLists.txt
index a5cb75b295..1e0e20abc1 100644
--- a/dll/win32/msxml3/CMakeLists.txt
+++ b/dll/win32/msxml3/CMakeLists.txt
@@ -75,5 +75,5 @@ set_module_type(msxml3 win32dll)
 target_link_libraries(msxml3 libxml2 iconv-static uuid wine zlib)
 add_importlibs(msxml3 urlmon ws2_32 shlwapi oleaut32 ole32 user32 msvcrt 
kernel32 ntdll)
 add_dependencies(msxml3 xmlparser_idlheader stdole2) # msxml3_v1.tlb needs 
stdole2.tlb
-add_pch(msxml3 precomp.h SOURCE)
+#add_pch(msxml3 precomp.h SOURCE)
 add_cd_file(TARGET msxml3 DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/vbscript/CMakeLists.txt 
b/dll/win32/vbscript/CMakeLists.txt
index 999d7edceb..bd530e7d10 100644
--- a/dll/win32/vbscript/CMakeLists.txt
+++ b/dll/win32/vbscript/CMakeLists.txt
@@ -42,5 +42,5 @@ set_module_type(vbscript win32dll)
 target_link_libraries(vbscript uuid wine)
 add_importlibs(vbscript oleaut32 ole32 user32 msvcrt kernel32 ntdll)
 add_dependencies(vbscript vbscript_idlheader stdole2)
-add_pch(vbscript precomp.h SOURCE)
+#add_pch(vbscript precomp.h SOURCE)
 add_cd_file(TARGET vbscript DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/wbemprox/CMakeLists.txt 
b/dll/win32/wbemprox/CMakeLists.txt
index a59647739e..49df8d0e1e 100644
--- a/dll/win32/wbemprox/CMakeLists.txt
+++ b/dll/win32/wbemprox/CMakeLists.txt
@@ -36,5 +36,5 @@ set_module_type(wbemprox win32dll)
 target_link_libraries(wbemprox uuid wine)
 add_importlibs(wbemprox iphlpapi oleaut32 advapi32 user32 gdi32 version 
winspool ws2_32 rpcrt4 setupapi msvcrt kernel32 ntdll)
 add_dependencies(wbemprox d3d_idl_headers)
-add_pch(wbemprox precomp.h SOURCE)
+#add_pch(wbemprox precomp.h SOURCE)
 add_cd_file(TARGET wbemprox DESTINATION reactos/system32/wbem FOR all)

Reply via email to