From a5b2cc03910258b3442e7685fdb95ec14d269e06 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 2 Dec 2020 21:45:17 -0600 Subject: [PATCH] chore(build): suppress invalid-offsetof warnings --- storm/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/storm/CMakeLists.txt b/storm/CMakeLists.txt index fe33bc9..35d05ed 100644 --- a/storm/CMakeLists.txt +++ b/storm/CMakeLists.txt @@ -36,3 +36,8 @@ target_link_libraries(storm PRIVATE system ) + +target_compile_options(storm + PUBLIC + -Wno-invalid-offsetof +)