From 3da4ec6b071b01e4df6c9cd000da6d836891191b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ne=C4=8Dada?= Date: Mon, 20 Jan 2020 12:22:45 +0200 Subject: [PATCH] Disable useless compiler warnings. (To be enabled again later during code cleanup.) Former-commit-id: b89a16fad5d13d2f39f550b3e5e2e9b991908821 --- qpms/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qpms/CMakeLists.txt b/qpms/CMakeLists.txt index d90239c..66036a8 100644 --- a/qpms/CMakeLists.txt +++ b/qpms/CMakeLists.txt @@ -29,7 +29,7 @@ target_link_libraries (qpms ) target_include_directories (qpms PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_compile_options(qpms PRIVATE -Wall -Wno-return-type) +target_compile_options(qpms PRIVATE -Wall -Wno-return-type -Wno-unused-variable -Wno-unused-function -Wno-unused-but-set-variable -Wno-unused-label) target_compile_definitions(qpms PRIVATE LATTICESUMS32 QPMS_VECTORS_NICE_TRANSFORMATIONS EWALD_AUTO_CUTOFF )