e0cbdfa716726b56818ed0683d120c6ea6c2a904
[reactos.git] / win32ss / drivers / displays / framebuf_new / CMakeLists.txt
1
2 list(APPEND SOURCE
3 debug.c
4 enable.c
5 palette.c
6 pointer.c
7 screen.c
8 driver.h)
9
10 add_library(framebuf_new SHARED
11 ${SOURCE}
12 framebuf_new.rc)
13
14 set_module_type(framebuf_new kerneldll ENTRYPOINT DrvEnableDriver 12)
15 target_link_libraries(framebuf_new libcntpr)
16 add_importlibs(framebuf_new win32k)
17 add_pch(framebuf_new driver.h SOURCE)
18 add_dependencies(framebuf_new psdk)