From 4a96a02da904d8b0c212f64eaae7f86811f5dd6a Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Sun, 9 May 2021 20:21:29 -0400 Subject: [PATCH] Add -fpermissive to Linux compile options for now * Just to see if CI will work --- cmake/Common.cmake | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/cmake/Common.cmake b/cmake/Common.cmake index 8b64726..672d5f1 100755 --- a/cmake/Common.cmake +++ b/cmake/Common.cmake @@ -4,16 +4,7 @@ macro(set_engine_properties target) if(ENABLE_MACOS OR ENABLE_LINUX) target_compile_options(${target} PUBLIC - -Wall - -Wextra - -Wno-c++98-compat - -Wno-c++98-compat-pedantic - -Wno-padded - -Wno-documentation-unknown-command - -Wno-used-but-marked-unused - -Wno-system-headers - -Wconversion - -Wno-sign-conversion) + -fpermissive) # ew but required for now TODO: remove and test! endif() if(ENABLE_MACOS)