mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
3ac2c07f55
- Null terminate buffer from IOCTL_USB_GET_ROOT_HUB_NAME, fixes usbview problems - Implement URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER, IUSBHardware needs more work - Silence debug traces - Start implementing IUSBRequest interfaces - Complete unhandled major irp with status success svn path=/branches/usb-bringup/; revision=51396
35 lines
No EOL
736 B
CMake
35 lines
No EOL
736 B
CMake
|
|
set_cpp()
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_library(usbehci SHARED
|
|
usbehci.cpp
|
|
usb_device.cpp
|
|
usb_request.cpp
|
|
usb_queue.cpp
|
|
hcd_controller.cpp
|
|
hardware.cpp
|
|
misc.cpp
|
|
purecall.cpp
|
|
hub_controller.cpp
|
|
memory_manager.cpp
|
|
usbehci.rc)
|
|
|
|
target_link_libraries(usbehci
|
|
libcntpr
|
|
stlport
|
|
${PSEH_LIB})
|
|
|
|
if(MSVC)
|
|
set_target_properties(usbehci PROPERTIES COMPILE_FLAGS "/GR-")
|
|
else()
|
|
target_link_libraries(usbehci -lgcc)
|
|
set_target_properties(usbehci PROPERTIES COMPILE_FLAGS "-fno-exceptions -fno-rtti")
|
|
endif(MSVC)
|
|
|
|
set_module_type(usbehci kernelmodedriver)
|
|
add_importlibs(usbehci ntoskrnl ks drmk hal)
|
|
|
|
add_cab_target(usbehci 2) |