reactos/drivers/usb/usbehci/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

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)