Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreen Sky <green@g-s.xyz>2022-11-06 18:02:28 +0300
committerGreen Sky <green@g-s.xyz>2022-11-06 18:02:28 +0300
commitd9e50a75f7bca791f74f4214815c967ab5480453 (patch)
treefc3f1816db740824a1ef75713ea94318c15dae8c
parentbf4ad2bc72b5a8a5d4e2c610dbae1fdfcb3a1bc3 (diff)
BUILD(cmake): the "optimize" option
typo. Also fast-math is not compatiple with opus and rnnoise, so the build fails as is.
-rw-r--r--cmake/compiler.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/compiler.cmake b/cmake/compiler.cmake
index d4f6c0348..76b507b61 100644
--- a/cmake/compiler.cmake
+++ b/cmake/compiler.cmake
@@ -72,7 +72,7 @@ elseif(UNIX OR MINGW)
add_compile_options("-Wa,-mbig-obj")
endif()
- if(options)
+ if(optimize)
add_compile_options(
"-O3"
"-march=native"