From 58ee9b4197d457cd8876c101fb833e21a479245c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 25 Aug 2020 22:18:35 -0400 Subject: externals: Untrack non-upstream variant of libusb We shouldn't be tracking personal forks of repositories when upstream can be managed directly. --- .gitmodules | 3 --- 1 file changed, 3 deletions(-) (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules index 79028bbb5..6fa823c1c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,9 +34,6 @@ [submodule "xbyak"] path = externals/xbyak url = https://github.com/herumi/xbyak.git -[submodule "externals/libusb"] - path = externals/libusb - url = https://github.com/ameerj/libusb [submodule "opus"] path = externals/opus/opus url = https://github.com/xiph/opus.git -- cgit v1.2.3 From 045255a0a00acc13c4d266fc63d2cb7e304eddaa Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 25 Aug 2020 22:21:32 -0400 Subject: externals: Track upstream libusb We can place the external in an inner folder and manage the custom files necessary to integrate it with CMake directly. This allows us to directly change how we use it with our build system, as opposed to needing to change a fork. --- .gitmodules | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules index 6fa823c1c..9d9356151 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,6 +16,9 @@ [submodule "libressl"] path = externals/libressl url = https://github.com/citra-emu/ext-libressl-portable.git +[submodule "libusb"] + path = externals/libusb/libusb + url = https://github.com/libusb/libusb.git [submodule "discord-rpc"] path = externals/discord-rpc url = https://github.com/discordapp/discord-rpc.git -- cgit v1.2.3