reactos/win32ss/drivers/miniport/vbe/CMakeLists.txt
Stanislav Motylkov 17e0e4428c
[PC98VID] Fix video driver settings
- Store settings in non hardware-profile registry key.
- Rename driver file to vgapnp.sys to keep in sync with VBE.
- This makes PC-98 video driver working again.

Addendum to 073a1ea3 and f03750de. CORE-18201 CORE-17977
2022-05-27 18:56:13 +03:00

18 lines
452 B
CMake

list(APPEND SOURCE
edid.c
vbemp.c
vbemp.h)
add_library(vgapnp MODULE ${SOURCE} vbemp.rc)
set_module_type(vgapnp kernelmodedriver)
add_importlibs(vgapnp videoprt)
add_pch(vgapnp vbemp.h SOURCE)
target_link_libraries(vgapnp libcntpr)
# pc98vid takes place of vga service on PC-98 platform
if(NOT SARCH STREQUAL "pc98")
add_cd_file(TARGET vgapnp DESTINATION reactos/system32/drivers FOR all)
add_registry_inf(vbemp_reg.inf)
endif()