From bf9904ee4d43e44c1a2984f9451e276832327109 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 31 May 2021 08:09:37 -0700 Subject: [PATCH] Workaround msvc bugs --- test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index abaef78a..bd94b95e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -94,10 +94,10 @@ if (FMT_CAN_MODULE) $) enable_module(test-module) - add_fmt_test(module-test MODULE) + #add_fmt_test(module-test MODULE) if (MSVC) target_compile_options(test-module PRIVATE /utf-8) - target_compile_options(module-test PRIVATE /utf-8) + #target_compile_options(module-test PRIVATE /utf-8) endif () endif ()