mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
17e0e4428c
- 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 to073a1ea3
andf03750de
. CORE-18201 CORE-17977
17 lines
452 B
CMake
17 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()
|