cura-engine: ignore -O3

This commit is contained in:
Đoàn Trần Công Danh 2021-03-27 12:18:36 +07:00
parent 4feaa3358f
commit 3f6198c895

View file

@ -0,0 +1,13 @@
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -42,7 +42,7 @@ endif()
if(CMAKE_BUILD_TYPE_UPPER MATCHES "DEBUG")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG_INIT}")
else()
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE_INIT}")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNDEBUG")
endif()
set(CMAKE_CXX_STANDARD 11)