mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
fc2d4e3800
- Silence debug flood - Remove debugging code - Add traces for composite device detection - Don't print device descriptor svn path=/branches/usb-bringup-trunk/; revision=55302
34 lines
775 B
CMake
34 lines
775 B
CMake
|
|
set_cpp()
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_library(usbohci SHARED
|
|
usbohci.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
|
|
usbohci.rc)
|
|
|
|
target_link_libraries(usbohci
|
|
libcntpr
|
|
${PSEH_LIB})
|
|
|
|
if(MSVC)
|
|
set_target_properties(usbohci PROPERTIES COMPILE_FLAGS "/GR-")
|
|
else()
|
|
target_link_libraries(usbohci -lgcc)
|
|
set_target_properties(usbohci PROPERTIES COMPILE_FLAGS "-fno-exceptions -fno-rtti")
|
|
endif(MSVC)
|
|
|
|
set_module_type(usbohci kernelmodedriver)
|
|
add_importlibs(usbohci ntoskrnl hal usbd)
|
|
|
|
add_cd_file(TARGET usbohci DESTINATION reactos/system32/drivers NO_CAB FOR all) |