https://git.reactos.org/?p=reactos.git;a=commitdiff;h=58428a6c29c705960d3722...
commit 58428a6c29c705960d3722c6c4dfd16740e82ec4 Author: Amine Khaldi amine.khaldi@reactos.org AuthorDate: Sun Nov 26 13:22:37 2017 +0100
[NFS41_NP] Add a PCH. --- dll/np/nfs/CMakeLists.txt | 10 ++++++++-- dll/np/nfs/precomp.h | 7 +++++++ 2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/dll/np/nfs/CMakeLists.txt b/dll/np/nfs/CMakeLists.txt index 756be2e307..b3d32f3db2 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 0000000000..9350723f13 --- /dev/null +++ b/dll/np/nfs/precomp.h @@ -0,0 +1,7 @@ +#ifdef _NFS_PRECOMP_H_ +#define _NFS_PRECOMP_H_ + +#include <windows.h> +#include "options.h" + +#endif /* _NFS_PRECOMP_H_ */