From 58428a6c29c705960d3722c6c4dfd16740e82ec4 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 26 Nov 2017 13:22:37 +0100 Subject: [PATCH] [NFS41_NP] Add a PCH. --- dll/np/nfs/CMakeLists.txt | 10 ++++++++-- dll/np/nfs/precomp.h | 7 +++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 dll/np/nfs/precomp.h diff --git a/dll/np/nfs/CMakeLists.txt b/dll/np/nfs/CMakeLists.txt index 756be2e3079..b3d32f3db22 100644 --- a/dll/np/nfs/CMakeLists.txt +++ b/dll/np/nfs/CMakeLists.txt @@ -5,13 +5,19 @@ list(APPEND SOURCE nfs41_np.c nfs41_np.h options.c - options.h) + options.h + precomp.h) include_directories( ${REACTOS_SOURCE_DIR}/drivers/filesystems/nfs) -add_library(nfs41_np SHARED ${SOURCE} nfsnp.rc ${CMAKE_CURRENT_BINARY_DIR}/nfs41_np.def) +add_library(nfs41_np SHARED + ${SOURCE} + nfsnp.rc + ${CMAKE_CURRENT_BINARY_DIR}/nfs41_np.def) + set_module_type(nfs41_np win32dll UNICODE) target_link_libraries(nfs41_np ${PSEH_LIB}) add_importlibs(nfs41_np msvcrt kernel32) +add_pch(nfs41_np precomp.h SOURCE) add_cd_file(TARGET nfs41_np DESTINATION reactos/system32 FOR all) diff --git a/dll/np/nfs/precomp.h b/dll/np/nfs/precomp.h new file mode 100644 index 00000000000..9350723f13d --- /dev/null +++ b/dll/np/nfs/precomp.h @@ -0,0 +1,7 @@ +#ifdef _NFS_PRECOMP_H_ +#define _NFS_PRECOMP_H_ + +#include +#include "options.h" + +#endif /* _NFS_PRECOMP_H_ */ -- 2.17.1