summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2021-03-21 23:29:01 -0400
committerGitHub <noreply@github.com>2021-03-21 23:29:01 -0400
commite274e3820535d857834d96381c22ffc31e63fd52 (patch)
tree848b3f755178fef5f0db54d14832f0cac4149722
parent2e85ee250d0bc6c5f3c64ae2ee3bbca296cf032a (diff)
parentdf9899eed6893f865229c26772e5f82697bde519 (diff)
Merge pull request #6078 from Morph1984/libusb-utf8
externals/libusb/CMakeLists: Add /utf-8 compile option for MSVC
-rw-r--r--externals/libusb/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt
index c0d24b126..70d6735e3 100644
--- a/externals/libusb/CMakeLists.txt
+++ b/externals/libusb/CMakeLists.txt
@@ -1,3 +1,8 @@
+# Ensure libusb compiles with UTF-8 encoding on MSVC
+if(MSVC)
+ add_compile_options(/utf-8)
+endif()
+
add_library(usb STATIC EXCLUDE_FROM_ALL
libusb/libusb/core.c
libusb/libusb/core.c