mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
13 lines
333 B
CMake
13 lines
333 B
CMake
|
|
include_directories(BEFORE include)
|
|
|
|
list(APPEND SOURCE
|
|
ne2000/8390.c
|
|
ne2000/main.c
|
|
ne2000.rc)
|
|
|
|
add_library(ne2000 SHARED ${SOURCE})
|
|
add_pch(ne2000 include/ne2000.h)
|
|
set_module_type(ne2000 kernelmodedriver)
|
|
add_importlibs(ne2000 ndis ntoskrnl hal)
|
|
add_cd_file(TARGET ne2000 DESTINATION reactos/system32/drivers FOR all)
|