diff options
author | LC <mathew1800@gmail.com> | 2021-03-05 20:09:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 20:09:37 -0500 |
commit | 97415ad07ab46934b9d524e3dacce7712b8a7833 (patch) | |
tree | 6b91a716380722c521e187e6d435146f1bd58530 /src | |
parent | 7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5 (diff) | |
parent | e7038344aa1c453b239645a5d964545082feeebe (diff) |
Merge pull request #6029 from Morph1984/compile-utf8
CMakeLists: Add /utf-8 compile option for MSVC
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
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 |