mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
28 lines
530 B
CMake
28 lines
530 B
CMake
|
|
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)
|