[UUID] Add a PCH.

This commit is contained in:
Amine Khaldi 2017-12-09 13:04:23 +01:00
parent 28343c6c0c
commit 69005963fb
2 changed files with 13 additions and 1 deletions

View file

@ -219,7 +219,9 @@ list(APPEND SOURCE
# vcguids.c
wdmguids.c
otherguids.c
undoc.c)
undoc.c
precomp.h)
add_library(uuid ${SOURCE})
add_pch(uuid precomp.h SOURCE)
add_dependencies(uuid psdk)

10
sdk/lib/uuid/precomp.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef _UUID_PRECOMP_H_
#define _UUID_PRECOMP_H_
#define WIN32_NO_STATUS
#define WIN32_LEAN_AND_MEAN
#include <rpc.h>
#include <rpcndr.h>
#endif /* _UUID_PRECOMP_H_ */