2013-07-05 04:18:32 +00:00
|
|
|
|
|
|
|
add_definitions(
|
|
|
|
-DNDIS50_MINIPORT
|
|
|
|
-DNDIS_MINIPORT_DRIVER
|
|
|
|
-DNDIS_LEGACY_MINIPORT)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
ndis.c
|
|
|
|
hardware.c
|
|
|
|
info.c
|
|
|
|
interrupt.c
|
2014-02-09 17:28:01 +00:00
|
|
|
nic.h)
|
2013-07-05 04:18:32 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(rtl8139 MODULE ${SOURCE} rtl8139.rc)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(rtl8139 nic.h SOURCE)
|
2013-07-05 04:18:32 +00:00
|
|
|
set_module_type(rtl8139 kernelmodedriver)
|
|
|
|
add_importlibs(rtl8139 ndis ntoskrnl hal)
|
|
|
|
add_cd_file(TARGET rtl8139 DESTINATION reactos/system32/drivers FOR all)
|
2020-04-26 16:50:44 +00:00
|
|
|
add_driver_inf(rtl8139 netrtl8139.inf)
|