mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00

Replace framebuf display driver by framebuf_new display driver Compile framebuf_new as framebuf.dll, and add it to bootcd/livecd Remove old framebuf from compilation, to not conflict
19 lines
432 B
CMake
19 lines
432 B
CMake
|
|
list(APPEND SOURCE
|
|
debug.c
|
|
enable.c
|
|
palette.c
|
|
pointer.c
|
|
screen.c
|
|
driver.h)
|
|
|
|
add_library(framebuf MODULE
|
|
${SOURCE}
|
|
framebuf.rc)
|
|
|
|
set_module_type(framebuf kerneldll ENTRYPOINT DrvEnableDriver 12)
|
|
target_link_libraries(framebuf libcntpr)
|
|
add_importlibs(framebuf win32k)
|
|
add_pch(framebuf driver.h SOURCE)
|
|
add_dependencies(framebuf psdk)
|
|
add_cd_file(TARGET framebuf DESTINATION reactos/system32 FOR all)
|