[WIN32SS]
[reactos.git] / reactos / win32ss / drivers / displays / framebuf / CMakeLists.txt
1
2 spec2def(framebuf.dll framebuf.spec)
3
4 add_library(framebuf SHARED
5 enable.c
6 palette.c
7 pointer.c
8 screen.c
9 surface.c
10 framebuf.rc
11 ${CMAKE_CURRENT_BINARY_DIR}/framebuf.def)
12
13 add_pch(framebuf framebuf.h)
14 set_entrypoint(framebuf DrvEnableDriver 12)
15 set_subsystem(framebuf native)
16 set_image_base(framebuf 0x00010000)
17 target_link_libraries(framebuf libcntpr)
18 add_importlibs(framebuf win32k)
19 add_dependencies(framebuf psdk bugcodes)
20 add_cd_file(TARGET framebuf DESTINATION reactos/system32 FOR all)