reactos/drivers/network/tdi/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
There is no need to compile our DLLs as shared libraries since we are
managing symbols exports and imports through spec files.

On my system, this reduces the configure-time by a factor of two.
2019-04-06 17:43:38 +02:00

33 lines
631 B
CMake

include_directories(
BEFORE include
${REACTOS_SOURCE_DIR}/sdk/lib/drivers/oskittcp/include)
add_definitions(
-DNDIS40
-D_NTDRIVER_
-D_TDI_)
spec2def(tdi.sys misc/tdi.spec)
list(APPEND SOURCE
cte/events.c
cte/string.c
cte/timer.c
misc/main.c
tdi/dereg.c
tdi/handler.c
tdi/obsolete.c
tdi/stubs.c
precomp.h)
add_library(tdi MODULE
${SOURCE}
misc/tdi.rc
${CMAKE_CURRENT_BINARY_DIR}/tdi.def)
add_pch(tdi precomp.h SOURCE)
set_module_type(tdi kernelmodedriver)
add_importlibs(tdi ntoskrnl hal)
add_cd_file(TARGET tdi DESTINATION reactos/system32/drivers FOR all)