reactos/win32ss/drivers/displays/framebuf/CMakeLists.txt
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

25 lines
575 B
CMake

spec2def(framebuf.dll framebuf.spec)
list(APPEND SOURCE
enable.c
palette.c
pointer.c
screen.c
surface.c
framebuf.h)
add_library(framebuf SHARED
${SOURCE}
framebuf.rc
${CMAKE_CURRENT_BINARY_DIR}/framebuf.def)
add_pch(framebuf framebuf.h SOURCE)
set_entrypoint(framebuf DrvEnableDriver 12)
set_subsystem(framebuf native)
set_image_base(framebuf 0x00010000)
target_link_libraries(framebuf libcntpr)
add_importlibs(framebuf win32k)
add_dependencies(framebuf psdk bugcodes)
add_cd_file(TARGET framebuf DESTINATION reactos/system32 FOR all)