reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt
hpoussin 1bdefebc9e
Enable framebuf_new driver (#4775)
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
2023-04-02 23:33:15 +09:00

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)