[IPHLPAPI] Implement getOwnerModUdpTable() and getOwnerModTcpTable()
[reactos.git] / drivers / filesystems / nfs / CMakeLists.txt
1 list(APPEND SOURCE
2 nfs41_driver.c
3 nfs41_debug.c
4 nfs41_driver.h
5 nfs41_debug.h)
6
7 include_directories(
8 ${REACTOS_SOURCE_DIR}/dll/np/nfs)
9
10 add_definitions(-DRDBSS_TRACKER)
11
12 add_library(nfs41_driver SHARED ${SOURCE} nfs.rc)
13 set_module_type(nfs41_driver kernelmodedriver)
14 target_link_libraries(nfs41_driver ntoskrnl_vista rdbsslib rxce copysup memcmp ${PSEH_LIB})
15 add_importlibs(nfs41_driver ntoskrnl hal)
16
17 if(USE_CLANG_CL OR (NOT MSVC))
18 add_target_compile_flags(nfs41_driver "-Wno-switch")
19 if(USE_CLANG_CL)
20 add_target_compile_flags(nfs41_driver "-Wno-unused-value")
21 endif()
22 endif()
23
24 add_cd_file(TARGET nfs41_driver DESTINATION reactos/system32/drivers FOR all)