mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
74ec94e12c
These are (so far): -Wno-format-overflow -Wno-nonnull-compare -Wno-old-style-declaration -Wno-unused-but-set-variable
22 lines
499 B
CMake
22 lines
499 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 MODULE ${SOURCE} fbtusb.rc)
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
target_compile_options(fbtusb PRIVATE -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)
|