reactos/win32ss/drivers/miniport/xboxvmp/CMakeLists.txt
Victor Perevertkin 019f21ee1d
[MEDIA][CMAKE] Create add_driver_inf cmake function
*.inf files for drivers can now be placed along with the driver code
2020-04-26 20:28:04 +03:00

15 lines
336 B
CMake

list(APPEND SOURCE
xboxvmp.c
xboxvmp.h)
add_library(xboxvmp MODULE
${SOURCE}
xboxvmp.rc)
set_module_type(xboxvmp kernelmodedriver)
add_importlibs(xboxvmp ntoskrnl videoprt)
add_cd_file(TARGET xboxvmp DESTINATION reactos/system32/drivers FOR all)
add_registry_inf(xboxvmp_reg.inf)
add_driver_inf(xboxvmp xboxdisp.inf)