From 8960f550ef9618f1e1111baa316a91ccd35063cd Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Wed, 25 Dec 2019 03:50:39 -0600 Subject: [PATCH] Move hidapi to dependencies as it is not maintained in this project --- OpenRGB.pro | 5 ++--- {hidapi => dependencies/hidapi}/hid.c | 0 {hidapi => dependencies/hidapi}/hidapi.h | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename {hidapi => dependencies/hidapi}/hid.c (100%) rename {hidapi => dependencies/hidapi}/hidapi.h (100%) diff --git a/OpenRGB.pro b/OpenRGB.pro index 314f22646..454a65cbe 100644 --- a/OpenRGB.pro +++ b/OpenRGB.pro @@ -6,9 +6,9 @@ TARGET = OpenRGB TEMPLATE = app INCLUDEPATH += \ + dependencies/hidapi/ \ i2c_smbus/ \ i2c_tools/ \ - hidapi/ \ net_port/ \ serial_port/ \ Controllers/AMDWraithPrismController/ \ @@ -25,6 +25,7 @@ INCLUDEPATH += \ qt/ SOURCES += \ + dependencies/hidapi/hid.c \ main.cpp \ OpenAuraSDK.cpp \ qt/OpenRGBDeviceInfoPage.cpp \ @@ -32,7 +33,6 @@ SOURCES += \ qt/OpenRGBDialog.cpp \ i2c_smbus/i2c_smbus.cpp \ i2c_tools/i2c_tools.cpp \ - hidapi/hid.c \ net_port/net_port.cpp \ qt/OpenRGBDialog2.cpp \ qt/OpenRGBSystemInfoPage.cpp \ @@ -75,7 +75,6 @@ HEADERS += \ qt/OpenRGBDialog.h \ i2c_smbus/i2c_smbus.h \ i2c_tools/i2c_tools.h \ - hidapi/hidapi.h \ net_port/net_port.h \ qt/OpenRGBDialog2.h \ qt/OpenRGBSystemInfoPage.h \ diff --git a/hidapi/hid.c b/dependencies/hidapi/hid.c similarity index 100% rename from hidapi/hid.c rename to dependencies/hidapi/hid.c diff --git a/hidapi/hidapi.h b/dependencies/hidapi/hidapi.h similarity index 100% rename from hidapi/hidapi.h rename to dependencies/hidapi/hidapi.h