- 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
This commit is contained in:
Amine Khaldi 2010-10-01 00:15:10 +00:00
parent b0ce92bdb2
commit 72864bcd6c
28 changed files with 564 additions and 2 deletions

View file

@ -1,3 +1,5 @@
add_subdirectory(atapi)
add_subdirectory(pciide)
add_subdirectory(pciidex)
add_subdirectory(uniata)

View file

@ -0,0 +1,7 @@
add_library(pciide SHARED pciide.c pciide.rc)
set_target_properties(pciide PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols -Wl,--subsystem,native" SUFFIX ".sys")
add_importlibs(pciide pciidex ntoskrnl)
add_dependencies(pciide psdk bugcodes)

View file

@ -0,0 +1,18 @@
spec2def(pciidex ${CMAKE_CURRENT_SOURCE_DIR}/pciidex.spec ${CMAKE_CURRENT_BINARY_DIR}/pciidex.def)
add_library(pciidex SHARED
fdo.c
miniport.c
misc.c
pciidex.c
pdo.c
pciidex.rc)
set_target_properties(pciidex PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native" SUFFIX ".sys")
target_link_libraries(pciidex
${CMAKE_CURRENT_BINARY_DIR}/pciidex.def)
add_importlibs(pciidex ntoskrnl)
add_dependencies(pciidex pciidex_def psdk bugcodes)