[CRT] Massively improve performance of rand_s
[reactos.git] / drivers / network / afd / CMakeLists.txt
1
2 include_directories(
3 BEFORE include
4 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
5
6 list(APPEND SOURCE
7 afd/bind.c
8 afd/connect.c
9 afd/context.c
10 afd/info.c
11 afd/listen.c
12 afd/lock.c
13 afd/main.c
14 afd/read.c
15 afd/select.c
16 afd/tdi.c
17 afd/tdiconn.c
18 afd/write.c
19 include/afd.h)
20
21 add_library(afd MODULE ${SOURCE} afd.rc)
22 target_link_libraries(afd ${PSEH_LIB})
23 set_module_type(afd kernelmodedriver)
24 add_importlibs(afd ntoskrnl hal)
25 add_pch(afd include/afd.h SOURCE)
26 add_cd_file(TARGET afd DESTINATION reactos/system32/drivers FOR all)
27 add_registry_inf(afd_reg.inf)