reactos/win32ss/drivers/displays/framebuf/CMakeLists.txt
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

20 lines
438 B
CMake

list(APPEND SOURCE
enable.c
palette.c
pointer.c
screen.c
surface.c
framebuf.h)
add_library(framebuf SHARED
${SOURCE}
framebuf.rc)
set_module_type(framebuf kerneldll ENTRYPOINT DrvEnableDriver 12)
add_pch(framebuf framebuf.h SOURCE)
target_link_libraries(framebuf libcntpr)
add_importlibs(framebuf win32k)
add_dependencies(framebuf psdk)
add_cd_file(TARGET framebuf DESTINATION reactos/system32 FOR all)