mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[IP]
* Properly account for checksum.S as an asm file. svn path=/trunk/; revision=61509
This commit is contained in:
parent
5222b71d38
commit
0532839496
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ include_directories(
|
|||
${REACTOS_SOURCE_DIR}/lib/drivers/lwip/src/include/ipv4)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
list(APPEND SOURCE network/i386/checksum.S)
|
||||
add_asm_files(ip_asm network/i386/checksum.S)
|
||||
endif()
|
||||
|
||||
list(APPEND SOURCE
|
||||
|
@ -32,6 +32,6 @@ list(APPEND SOURCE
|
|||
transport/tcp/tcp.c
|
||||
transport/udp/udp.c)
|
||||
|
||||
add_library(ip ${SOURCE})
|
||||
add_library(ip ${SOURCE} ${ip_asm})
|
||||
add_pch(ip precomp.h)
|
||||
add_dependencies(ip bugcodes)
|
||||
|
|
Loading…
Reference in a new issue