mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
72864bcd6c
- Add ksuser, npfs, ntfs, ks, parallel, serenum, serial, pciide, pciidex, usbdriver, usbd, framebuf, framebuf_new and portcls to build. By Alexey Komarov. svn path=/branches/cmake-bringup/; revision=48951
29 lines
887 B
CMake
29 lines
887 B
CMake
|
|
spec2def(framebuf_new ${CMAKE_CURRENT_SOURCE_DIR}/framebuf_new.spec ${CMAKE_CURRENT_BINARY_DIR}/framebuf_new.def)
|
|
|
|
list(APPEND SOURCE
|
|
debug.c
|
|
enable.c
|
|
palette.c
|
|
pointer.c
|
|
screen.c
|
|
framebuf_new.rc)
|
|
|
|
add_library(framebuf_new SHARED ${CMAKE_CURRENT_BINARY_DIR}/framebuf_new_driver.h.gch ${SOURCE})
|
|
|
|
if(ARCH MATCHES i386)
|
|
if(MSVC)
|
|
else()
|
|
set_target_properties(framebuf_new PROPERTIES COMPILE_FLAGS "-mrtd -fno-builtin")
|
|
endif()
|
|
endif()
|
|
|
|
set_target_properties(framebuf_new PROPERTIES LINK_FLAGS "-Wl,-entry,_DrvEnableDriver@12 -Wl,--image-base,0x00010000 -Wl,--subsystem,native")
|
|
|
|
target_link_libraries(framebuf_new
|
|
${CMAKE_CURRENT_BINARY_DIR}/framebuf_new.def
|
|
libcntpr)
|
|
|
|
add_importlibs(framebuf_new win32k)
|
|
add_pch(framebuf_new ${CMAKE_CURRENT_SOURCE_DIR}/driver.h ${SOURCE})
|
|
add_dependencies(framebuf_new framebuf_new_def psdk bugcodes)
|