reactos/lib/dnslib/CMakeLists.txt
Amine Khaldi 178300c8a6 * Sync to trunk HEAD (r53318).
* Fix PCH use in shell32.

svn path=/branches/shell32_new-bringup/; revision=53319
2011-08-19 17:45:34 +00:00

27 lines
392 B
CMake

include_directories(inc)
add_definitions(-DUNICODE -D_UNICODE)
list(APPEND SOURCE
addr.c
debug.c
dnsaddr.c
dnsutil.c
flatbuf.c
hostent.c
ip6.c
memory.c
name.c
print.c
record.c
rrprint.c
sablob.c
straddr.c
string.c
table.c
utf8.c)
add_library(dnslib ${SOURCE})
add_pch(dnslib inc/precomp.h)
add_dependencies(dnslib psdk)