reactos/drivers/bluetooth/fbtusb/CMakeLists.txt
David Quintana 9c589bb131 Sync with trunk r62754.
svn path=/branches/shell-experiments/; revision=62756
2014-04-15 23:01:15 +00:00

23 lines
500 B
CMake

include_directories(include)
list(APPEND SOURCE
fbtdev.c
fbtpnp.c
fbtpwr.c
fbtrwr.c
# fbtwmi.c
fbtusb.c
precomp.h)
add_library(fbtusb SHARED ${SOURCE} fbtusb.rc)
if(NOT MSVC)
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-unused-but-set-variable")
endif()
set_module_type(fbtusb kernelmodedriver)
add_importlibs(fbtusb ntoskrnl hal usbd)
add_pch(fbtusb precomp.h SOURCE)
add_cd_file(TARGET fbtusb DESTINATION reactos/system32/drivers FOR all)