[WIN32SS]
[reactos.git] / reactos / win32ss / drivers / displays / framebuf_new / CMakeLists.txt
1
2 spec2def(framebuf_new.dll framebuf_new.spec)
3
4 list(APPEND SOURCE
5 debug.c
6 enable.c
7 palette.c
8 pointer.c
9 screen.c
10 driver.h)
11
12 add_library(framebuf_new SHARED
13 ${SOURCE}
14 framebuf_new.rc
15 ${CMAKE_CURRENT_BINARY_DIR}/framebuf_new.def)
16
17 set_entrypoint(framebuf_new DrvEnableDriver 12)
18 set_subsystem(framebuf_new native)
19 set_image_base(framebuf_new 0x00010000)
20 target_link_libraries(framebuf_new libcntpr)
21 add_importlibs(framebuf_new win32k)
22 add_pch(framebuf_new driver.h SOURCE)
23 add_dependencies(framebuf_new psdk bugcodes)