mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +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
18 lines
343 B
CMake
18 lines
343 B
CMake
|
|
list(APPEND SOURCE
|
|
modeset.c
|
|
vgadata.c
|
|
vga.c
|
|
vbemodes.c
|
|
vbe.c
|
|
vga.h)
|
|
|
|
add_library(vga MODULE
|
|
${SOURCE}
|
|
vga.rc)
|
|
|
|
target_link_libraries(vga libcntpr)
|
|
set_module_type(vga kernelmodedriver)
|
|
add_importlibs(vga videoprt)
|
|
add_pch(vga vga.h SOURCE)
|
|
add_cd_file(TARGET vga DESTINATION reactos/system32/drivers FOR all)
|