mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
23373acbb9
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.
45 lines
909 B
CMake
45 lines
909 B
CMake
|
|
include_directories(BEFORE include)
|
|
spec2def(ndis.sys ndis.spec ADD_IMPORTLIB)
|
|
|
|
add_definitions(
|
|
-DNDIS_WRAPPER
|
|
-DNDIS51
|
|
-DNDIS51_MINIPORT
|
|
-DNDIS_LEGACY_DRIVER
|
|
-DNDIS_LEGACY_MINIPORT
|
|
-DNDIS_LEGACY_PROTOCOL
|
|
-DNDIS_MINIPORT_DRIVER)
|
|
|
|
list(APPEND SOURCE
|
|
ndis/30stubs.c
|
|
ndis/40stubs.c
|
|
ndis/50stubs.c
|
|
ndis/buffer.c
|
|
ndis/cl.c
|
|
ndis/cm.c
|
|
ndis/co.c
|
|
ndis/config.c
|
|
ndis/control.c
|
|
ndis/efilter.c
|
|
ndis/hardware.c
|
|
ndis/io.c
|
|
ndis/main.c
|
|
ndis/memory.c
|
|
ndis/miniport.c
|
|
ndis/misc.c
|
|
ndis/protocol.c
|
|
ndis/string.c
|
|
ndis/time.c
|
|
include/ndissys.h)
|
|
|
|
add_library(ndis MODULE
|
|
${SOURCE}
|
|
ndis.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/ndis.def)
|
|
|
|
set_module_type(ndis kernelmodedriver)
|
|
add_importlibs(ndis ntoskrnl hal)
|
|
add_pch(ndis include/ndissys.h SOURCE)
|
|
add_cd_file(TARGET ndis DESTINATION reactos/system32/drivers FOR all)
|