We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8567288 commit 7dacdc9Copy full SHA for 7dacdc9
CMakeLists.txt
@@ -224,5 +224,10 @@ endif()
224
225
if(APPLE)
226
target_compile_definitions(${TARGET} PUBLIC JUCE_AU=1)
227
- #target_compile_options(${TARGET} PRIVATE "-mfma")
+
228
+ # This option is relevant to x86_64 target architecture,
229
+ # but I do not see how to detect the target architecture
230
+ # during CMake generation time. So this will cause warnings when
231
+ # compiling for arm64.
232
+ target_compile_options(${TARGET} PRIVATE "-mfma")
233
endif()
0 commit comments