mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[LWIP]
* Introduce a PCH suitable for use without altering the 3rd party code. * Prepare the CMake scripts for PCH. CORE-7716 svn path=/trunk/; revision=62122
This commit is contained in:
parent
9618b3511d
commit
87399ed5fb
2 changed files with 9 additions and 1 deletions
|
@ -54,10 +54,12 @@ list(APPEND SOURCE
|
|||
src/core/snmp/mib_structs.c
|
||||
src/core/snmp/mib2.c
|
||||
src/core/snmp/msg_in.c
|
||||
src/core/snmp/msg_out.c)
|
||||
src/core/snmp/msg_out.c
|
||||
precomp.h)
|
||||
|
||||
add_library(lwip ${SOURCE})
|
||||
add_dependencies(lwip bugcodes)
|
||||
add_pch(lwip precomp.h SOURCE)
|
||||
if(NOT MSVC)
|
||||
allow_warnings(lwip)
|
||||
if(LTCG)
|
||||
|
|
6
reactos/lib/drivers/lwip/precomp.h
Normal file
6
reactos/lib/drivers/lwip/precomp.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
#ifndef _LWIP_PCH_
|
||||
#define _LWIP_PCH_
|
||||
|
||||
#include "src/include/lwip/opt.h"
|
||||
|
||||
#endif /* _LWIP_PCH_ */
|
Loading…
Reference in a new issue