From b6d1f8ebdbb49fcb71359a5be7ed30beda0dd92b Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Mon, 23 Mar 2020 22:48:27 +0100 Subject: [PATCH] Fix MSVC flag for UTF-8 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 90803ce8..2bbec9f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,7 +81,7 @@ foreach(lib screen dom component) # Force Microsoft Visual Studio to decode sources files in UTF-8. This applies # to the library and the library users. if (MSVC) - target_compile_options(${lib} PUBLIC "/utf-8>") + target_compile_options(${lib} PUBLIC "/utf-8") endif() # Add as many warning as possible: