From a6f8ef257eb82b8f54e90f54a10183c63bcbb216 Mon Sep 17 00:00:00 2001 From: Feodor Fitsner Date: Mon, 25 Nov 2024 09:19:39 -0800 Subject: [PATCH] Rive and main.dart fixes for 0.25.0 (#29) --- {{cookiecutter.out_dir}}/linux/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.out_dir}}/linux/CMakeLists.txt b/{{cookiecutter.out_dir}}/linux/CMakeLists.txt index e8e5de1..1bc35a9 100644 --- a/{{cookiecutter.out_dir}}/linux/CMakeLists.txt +++ b/{{cookiecutter.out_dir}}/linux/CMakeLists.txt @@ -41,7 +41,7 @@ endif() # of modifying this function. function(APPLY_STANDARD_SETTINGS TARGET) target_compile_features(${TARGET} PUBLIC cxx_std_14) - target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE -Wall -Werror -Wno-unused-variable -Wno-unused-function) target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") endfunction()