summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-03-05 07:46:56 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-03-05 07:46:56 +0100
commite7038344aa1c453b239645a5d964545082feeebe (patch)
tree08bc6ea72ec2267a43a2b4db0f05fcf7537e9ada
parentMerge pull request #5815 from comex/net-error-reform (diff)
downloadyuzu-e7038344aa1c453b239645a5d964545082feeebe.tar
yuzu-e7038344aa1c453b239645a5d964545082feeebe.tar.gz
yuzu-e7038344aa1c453b239645a5d964545082feeebe.tar.bz2
yuzu-e7038344aa1c453b239645a5d964545082feeebe.tar.lz
yuzu-e7038344aa1c453b239645a5d964545082feeebe.tar.xz
yuzu-e7038344aa1c453b239645a5d964545082feeebe.tar.zst
yuzu-e7038344aa1c453b239645a5d964545082feeebe.zip
-rw-r--r--src/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1cfd3bbc9..8bd7e5f72 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -27,6 +27,7 @@ if (MSVC)
# /Zo - Enhanced debug info for optimized builds
# /permissive- - Enables stricter C++ standards conformance checks
# /EHsc - C++-only exception handling semantics
+ # /utf-8 - Set source and execution character sets to UTF-8
# /volatile:iso - Use strict standards-compliant volatile semantics.
# /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates
# /Zc:inline - Let codegen omit inline functions in object files
@@ -38,6 +39,7 @@ if (MSVC)
/permissive-
/EHsc
/std:c++latest
+ /utf-8
/volatile:iso
/Zc:externConstexpr
/Zc:inline