diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-25 17:30:00 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-25 17:30:16 +0200 |
commit | f9cf4d86a86e5d85f017c4f28d89650bbf64f2aa (patch) | |
tree | 4bdaf44a383a90e84e3d839de93348ab54c014f4 | |
parent | msg: add msg_copy, refactoring (diff) | |
download | cimple-f9cf4d86a86e5d85f017c4f28d89650bbf64f2aa.tar.gz cimple-f9cf4d86a86e5d85f017c4f28d89650bbf64f2aa.zip |
cmake: ignore unused parameters for now
This is a dumb warning.
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 69b7690..1cd508c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,7 +5,7 @@ project(tinyCI VERSION 0.0.1 LANGUAGES C) if(MSVC) add_compile_options(/W4 /WX) else() - add_compile_options(-Wall -Wextra -Werror) + add_compile_options(-Wall -Wextra -Werror -Wno-error=unused-parameter) endif() add_compile_definitions(_GNU_SOURCE) |