From 0532839496bb5abab177f61ba4fa5ae2f7b432f0 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 4 Jan 2014 10:11:02 +0000 Subject: [PATCH] [IP] * Properly account for checksum.S as an asm file. svn path=/trunk/; revision=61509 --- reactos/lib/drivers/ip/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/drivers/ip/CMakeLists.txt b/reactos/lib/drivers/ip/CMakeLists.txt index 20c900577e8..a604ff3b2c5 100644 --- a/reactos/lib/drivers/ip/CMakeLists.txt +++ b/reactos/lib/drivers/ip/CMakeLists.txt @@ -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) -- 2.17.1