mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[LIBTIRPC] Add a PCH.
This commit is contained in:
parent
1feb8e627e
commit
53d3f00b2b
2 changed files with 35 additions and 1 deletions
4
dll/3rdparty/libtirpc/CMakeLists.txt
vendored
4
dll/3rdparty/libtirpc/CMakeLists.txt
vendored
|
@ -85,7 +85,8 @@ list(APPEND SOURCE
|
|||
src/xdr_rec.c
|
||||
src/xdr_reference.c
|
||||
src/xdr_sizeof.c
|
||||
src/xdr_stdio.c)
|
||||
src/xdr_stdio.c
|
||||
precomp.h)
|
||||
|
||||
add_library(libtirpc SHARED
|
||||
${SOURCE}
|
||||
|
@ -102,4 +103,5 @@ endif()
|
|||
set_module_type(libtirpc win32dll)
|
||||
add_importlibs(libtirpc user32 advapi32 kernel32_vista ws2_32 msvcrt kernel32 ntdll)
|
||||
add_delay_importlibs(libtirpc secur32)
|
||||
add_pch(libtirpc precomp.h SOURCE)
|
||||
add_cd_file(TARGET libtirpc DESTINATION reactos/system32 FOR all)
|
||||
|
|
32
dll/3rdparty/libtirpc/precomp.h
vendored
Normal file
32
dll/3rdparty/libtirpc/precomp.h
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
#ifndef _LIBTIRPC_PRECOMP_H_
|
||||
#define _LIBTIRPC_PRECOMP_H_
|
||||
|
||||
#include <wintirpc.h>
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <reentrant.h>
|
||||
#include <time.h>
|
||||
#include <fcntl.h>
|
||||
#include <netconfig.h>
|
||||
#include <rpc/xdr.h>
|
||||
#include <rpc/auth.h>
|
||||
#include <rpc/auth_sspi.h>
|
||||
#include <rpc/auth_unix.h>
|
||||
#include <rpc/clnt.h>
|
||||
#include <rpc/nettype.h>
|
||||
#include <rpc/rpc.h>
|
||||
#include <rpc/raw.h>
|
||||
#include <rpc/rpcb_prot.h>
|
||||
#include <rpc/svc.h>
|
||||
#include <rpc/types.h>
|
||||
#include <sys/types.h>
|
||||
#include <rpc/pmap_prot.h>
|
||||
#include <rpc/pmap_clnt.h>
|
||||
#include <rpc/pmap_rmt.h>
|
||||
#include <libc_private.h>
|
||||
|
||||
#endif /* _LIBTIRPC_PRECOMP_H_ */
|
Loading…
Reference in a new issue