mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
019f21ee1d
*.inf files for drivers can now be placed along with the driver code
14 lines
409 B
CMake
14 lines
409 B
CMake
|
|
include_directories(BEFORE include)
|
|
|
|
list(APPEND SOURCE
|
|
ne2000/8390.c
|
|
ne2000/main.c
|
|
include/ne2000.h)
|
|
|
|
add_library(ne2000 MODULE ${SOURCE} ne2000.rc)
|
|
add_pch(ne2000 include/ne2000.h SOURCE)
|
|
set_module_type(ne2000 kernelmodedriver)
|
|
add_importlibs(ne2000 ndis ntoskrnl hal)
|
|
add_cd_file(TARGET ne2000 DESTINATION reactos/system32/drivers FOR all)
|
|
add_driver_inf(ne2000 netne2000.inf netrtl8029.inf)
|