reactos/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt
Amine Khaldi f553e50746 [WIN32SS]
* Prepare the CMake scripts for PCH.
CORE-7716

svn path=/trunk/; revision=62087
2014-02-09 22:52:01 +00:00

24 lines
551 B
CMake

spec2def(framebuf_new.dll framebuf_new.spec)
list(APPEND SOURCE
debug.c
enable.c
palette.c
pointer.c
screen.c
driver.h)
add_library(framebuf_new SHARED
${SOURCE}
framebuf_new.rc
${CMAKE_CURRENT_BINARY_DIR}/framebuf_new.def)
set_entrypoint(framebuf_new DrvEnableDriver 12)
set_subsystem(framebuf_new native)
set_image_base(framebuf_new 0x00010000)
target_link_libraries(framebuf_new libcntpr)
add_importlibs(framebuf_new win32k)
add_pch(framebuf_new driver.h SOURCE)
add_dependencies(framebuf_new psdk bugcodes)