ports/math/cglm/patches/patch-CMakeLists_txt

15 lines
350 B
Text
Raw Normal View History

2023-09-11 22:02:06 +00:00
- drop hardcoded -O3
2023-08-16 22:26:55 +00:00
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
2023-09-11 22:02:06 +00:00
@@ -43,7 +43,7 @@ if(MSVC)
2023-08-16 22:26:55 +00:00
string(REGEX REPLACE "/RTC(su|[1su])" "" ${flag_var} "${${flag_var}}")
endforeach(flag_var)
else()
2023-09-11 22:02:06 +00:00
- add_compile_options(-Wall -O3)
2023-08-16 22:26:55 +00:00
+ add_compile_options(-Wall)
endif()
2023-09-11 22:02:06 +00:00
get_directory_property(hasParent PARENT_DIRECTORY)