From 741b8c81bfaaa230a437c5450fbc15bc67ef2f51 Mon Sep 17 00:00:00 2001 From: Ricardo Antunes Date: Fri, 1 Mar 2024 18:13:56 +0000 Subject: [PATCH] build: disable warning about missing DLL interfaces --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d11844d267..8029291c72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,7 +86,8 @@ function(cubos_common_target_options target) /wd4996 # Disable warning about deprecated functions /wd4458 # Disable warning about shadowing member variables /wd4456 # Disable warning about shadowing local variables - /wd4335> # Disable warning about Mac file format + /wd4335 # Disable warning about Mac file format + /wd4251> # Disable warning about missing DLL interfaces $<$>: -Wall