From a4461f4196a689144f3531b9e5090ececa730d88 Mon Sep 17 00:00:00 2001 From: Mikael Olenfalk Date: Wed, 25 Mar 2020 08:52:57 +0100 Subject: [PATCH] Ignore warning 4267 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49667a8..ce8cd17 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,6 +107,7 @@ foreach(lib screen dom component) target_compile_options(${lib} PRIVATE "/W4") target_compile_options(${lib} PRIVATE "/WX") target_compile_options(${lib} PRIVATE "/wd4244") + target_compile_options(${lib} PRIVATE "/wd4267") else() target_compile_options(${lib} PRIVATE "-Wall") target_compile_options(${lib} PRIVATE "-Wextra")