summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2021-03-06 02:09:37 +0100
committerGitHub <noreply@github.com>2021-03-06 02:09:37 +0100
commit97415ad07ab46934b9d524e3dacce7712b8a7833 (patch)
tree6b91a716380722c521e187e6d435146f1bd58530
parentMerge pull request #6039 from yuzu-emu/revert-6006-fiber-unique-ptr (diff)
parentCMakeLists: Add /utf-8 compile option for MSVC (diff)
downloadyuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar.gz
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar.bz2
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar.lz
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar.xz
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.tar.zst
yuzu-97415ad07ab46934b9d524e3dacce7712b8a7833.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