From 18bd1177837265e1b0caecc158ec5963292ae583 Mon Sep 17 00:00:00 2001 From: Quentin Date: Tue, 12 Sep 2023 20:20:29 +0200 Subject: [PATCH] feat(cmake): enforce utf8 (#2115) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d8e8feb..1edbbc5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,6 +34,8 @@ file(GLOB_RECURSE SRC_MAIN if (MSVC) add_compile_options(/bigobj) + add_compile_options("$<$:/utf-8>") + add_compile_options("$<$:/utf-8>") else () add_compile_options(-Wa,-mbig-obj) endif ()