mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
019f21ee1d
*.inf files for drivers can now be placed along with the driver code
13 lines
348 B
CMake
13 lines
348 B
CMake
|
|
list(APPEND SOURCE
|
|
processr.c
|
|
misc.c
|
|
pnp.c
|
|
processr.h)
|
|
|
|
add_library(processr MODULE ${SOURCE} processr.rc)
|
|
set_module_type(processr kernelmodedriver)
|
|
add_importlibs(processr hal ntoskrnl)
|
|
add_pch(processr processr.h SOURCE)
|
|
add_cd_file(TARGET processr DESTINATION reactos/system32/drivers FOR all)
|
|
add_driver_inf(processr cpu.inf)
|