File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,19 @@ list(APPEND SOURCE
5
5
nfs41_np.c
6
6
nfs41_np.h
7
7
options .c
8
- options .h )
8
+ options .h
9
+ precomp.h )
9
10
10
11
include_directories (
11
12
${REACTOS_SOURCE_DIR} /drivers/filesystems/nfs )
12
13
13
- add_library (nfs41_np SHARED ${SOURCE} nfsnp.rc ${CMAKE_CURRENT_BINARY_DIR} /nfs41_np.def )
14
+ add_library (nfs41_np SHARED
15
+ ${SOURCE}
16
+ nfsnp.rc
17
+ ${CMAKE_CURRENT_BINARY_DIR} /nfs41_np.def )
18
+
14
19
set_module_type (nfs41_np win32dll UNICODE )
15
20
target_link_libraries (nfs41_np ${PSEH_LIB} )
16
21
add_importlibs (nfs41_np msvcrt kernel32 )
22
+ add_pch (nfs41_np precomp.h SOURCE )
17
23
add_cd_file (TARGET nfs41_np DESTINATION reactos/system32 FOR all )
Original file line number Diff line number Diff line change
1
+ #ifdef _NFS_PRECOMP_H_
2
+ #define _NFS_PRECOMP_H_
3
+
4
+ #include <windows.h>
5
+ #include "options.h"
6
+
7
+ #endif /* _NFS_PRECOMP_H_ */
You can’t perform that action at this time.
0 commit comments