mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
18 lines
321 B
CMake
18 lines
321 B
CMake
|
|
add_definitions(
|
|
-DNDIS50_MINIPORT
|
|
-DNDIS_MINIPORT_DRIVER
|
|
-DNDIS_LEGACY_MINIPORT
|
|
-DNDIS51_MINIPORT)
|
|
|
|
list(APPEND SOURCE
|
|
pcnet.c
|
|
requests.c
|
|
pcnet.rc)
|
|
|
|
add_library(pcnet SHARED ${SOURCE})
|
|
|
|
set_module_type(pcnet kernelmodedriver)
|
|
add_importlibs(pcnet ndis ntoskrnl hal)
|
|
|
|
add_cab_target(pcnet 2)
|