mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:31:45 +00:00
[CMAKE]
- 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:
parent
b0ce92bdb2
commit
72864bcd6c
28 changed files with 564 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
|
||||
add_subdirectory(atapi)
|
||||
add_subdirectory(pciide)
|
||||
add_subdirectory(pciidex)
|
||||
add_subdirectory(uniata)
|
||||
|
|
7
drivers/storage/ide/pciide/CMakeLists.txt
Normal file
7
drivers/storage/ide/pciide/CMakeLists.txt
Normal 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)
|
18
drivers/storage/ide/pciidex/CMakeLists.txt
Normal file
18
drivers/storage/ide/pciidex/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue