mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
18 lines
394 B
CMake
18 lines
394 B
CMake
|
|
list(APPEND SOURCE
|
|
debug.c
|
|
enable.c
|
|
palette.c
|
|
pointer.c
|
|
screen.c
|
|
driver.h)
|
|
|
|
add_library(framebuf_new SHARED
|
|
${SOURCE}
|
|
framebuf_new.rc)
|
|
|
|
set_module_type(framebuf_new kerneldll ENTRYPOINT DrvEnableDriver 12)
|
|
target_link_libraries(framebuf_new libcntpr)
|
|
add_importlibs(framebuf_new win32k)
|
|
add_pch(framebuf_new driver.h SOURCE)
|
|
add_dependencies(framebuf_new psdk)
|