reactos/lib/3rdparty/adns/CMakeLists.txt
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

26 lines
409 B
CMake

include_directories(
src
adns_win32)
add_definitions(
-D_DLL -D__USE_CRTIMP
-DADNS_JGAA_WIN32)
list(APPEND SOURCE
adns_win32/adns_unix_calls.c
src/check.c
src/event.c
src/general.c
src/parse.c
src/poll.c
src/query.c
src/reply.c
src/setup.c
src/transmit.c
src/types.c)
add_library(adns ${SOURCE})
add_dependencies(adns psdk)
allow_warnings(adns)