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