mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
49ab546ac3
svn path=/branches/ntvdm/; revision=61579
29 lines
555 B
CMake
29 lines
555 B
CMake
|
|
set_cpp()
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/drivers/libusb)
|
|
|
|
list(APPEND SOURCE
|
|
usbehci.cpp
|
|
usb_request.cpp
|
|
usb_queue.cpp
|
|
hardware.cpp
|
|
guid.cpp)
|
|
|
|
add_library(usbehci SHARED
|
|
${SOURCE}
|
|
usbehci.rc)
|
|
|
|
target_link_libraries(usbehci
|
|
libusb
|
|
libcntpr
|
|
${PSEH_LIB})
|
|
|
|
set_module_type(usbehci kernelmodedriver)
|
|
add_importlibs(usbehci ntoskrnl hal usbd)
|
|
|
|
add_cd_file(TARGET usbehci DESTINATION reactos/system32/drivers NO_CAB FOR all)
|