From 847de563c5a7a329f50bb8b432f46baf715e6747 Mon Sep 17 00:00:00 2001 From: William Yang Date: Thu, 15 Jul 2021 09:10:06 +0200 Subject: [PATCH] fix: build issue with CMake 3.20.5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17e4fe69..620a3fce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ elseif (CMAKE_SYSTEM_NAME MATCHES Darwin) endif() # @todo clean complier warnings in the code -target_compile_options(quicer_static PUBLIC "-og" "-ggdb3" "-Wno-unused-variable") +target_compile_options(quicer_static PUBLIC "-ggdb3" "-Wno-unused-variable") add_library(quicer_nif SHARED ${SOURCES}) if (CMAKE_SYSTEM_NAME MATCHES Linux)