mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 19:27:00 +00:00
[INF]
- Add bth.inf [FBTUSB] - Add to build and bootcd svn path=/trunk/; revision=56246
This commit is contained in:
parent
ba5509bc72
commit
a9e1b2d9f5
7 changed files with 26 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
add_subdirectory(base)
|
add_subdirectory(base)
|
||||||
add_subdirectory(battery)
|
add_subdirectory(battery)
|
||||||
|
add_subdirectory(bluetooth)
|
||||||
add_subdirectory(bus)
|
add_subdirectory(bus)
|
||||||
add_subdirectory(directx)
|
add_subdirectory(directx)
|
||||||
add_subdirectory(filesystems)
|
add_subdirectory(filesystems)
|
||||||
|
|
2
reactos/drivers/bluetooth/CMakeLists.txt
Normal file
2
reactos/drivers/bluetooth/CMakeLists.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
add_subdirectory(fbtusb)
|
18
reactos/drivers/bluetooth/fbtusb/CMakeLists.txt
Normal file
18
reactos/drivers/bluetooth/fbtusb/CMakeLists.txt
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
BEFORE include
|
||||||
|
include)
|
||||||
|
|
||||||
|
add_library(fbtusb SHARED
|
||||||
|
fbtdev.c
|
||||||
|
fbtpnp.c
|
||||||
|
fbtpwr.c
|
||||||
|
fbtrwr.c
|
||||||
|
fbtusb.c
|
||||||
|
# fbtwmi.c
|
||||||
|
fbtusb.rc)
|
||||||
|
|
||||||
|
allow_warnings(fbtusb)
|
||||||
|
set_module_type(fbtusb kernelmodedriver)
|
||||||
|
add_importlibs(fbtusb ntoskrnl hal usbd)
|
||||||
|
add_cd_file(TARGET fbtusb DESTINATION reactos/system32/drivers FOR all)
|
|
@ -3,6 +3,7 @@ list(APPEND INF_FILES
|
||||||
audio.inf
|
audio.inf
|
||||||
battery.inf
|
battery.inf
|
||||||
bda.inf
|
bda.inf
|
||||||
|
bth.inf
|
||||||
cdrom.inf
|
cdrom.inf
|
||||||
cpu.inf
|
cpu.inf
|
||||||
disk.inf
|
disk.inf
|
||||||
|
|
BIN
reactos/media/inf/bth.inf
Normal file
BIN
reactos/media/inf/bth.inf
Normal file
Binary file not shown.
|
@ -3,7 +3,8 @@ Signature = $Windows NT$
|
||||||
ClassGUID = {00000000-0000-0000-0000-000000000000}
|
ClassGUID = {00000000-0000-0000-0000-000000000000}
|
||||||
|
|
||||||
[DeviceInfsToInstall]
|
[DeviceInfsToInstall]
|
||||||
battery.inf
|
battery.inf
|
||||||
|
bth.inf
|
||||||
cdrom.inf
|
cdrom.inf
|
||||||
cpu.inf
|
cpu.inf
|
||||||
disk.inf
|
disk.inf
|
||||||
|
|
|
@ -14,7 +14,8 @@ ClassGUID={00000000-0000-0000-0000-000000000000}
|
||||||
[DeviceInfsToInstall]
|
[DeviceInfsToInstall]
|
||||||
; MS uses netnovel.inf as class-installer INF for NICs
|
; MS uses netnovel.inf as class-installer INF for NICs
|
||||||
; we use a separate one to keep things clean
|
; we use a separate one to keep things clean
|
||||||
battery.inf
|
battery.inf
|
||||||
|
bth.inf
|
||||||
cdrom.inf
|
cdrom.inf
|
||||||
cpu.inf
|
cpu.inf
|
||||||
disk.inf
|
disk.inf
|
||||||
|
|
Loading…
Reference in a new issue