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 c299f9a commit ea61996Copy full SHA for ea61996
cmake/prep/options.cmake
@@ -9,6 +9,12 @@ set(SUNSHINE_PUBLISHER_ISSUE_URL "https://app.lizardbyte.dev/support"
9
10
option(BUILD_DOCS "Build documentation" ON)
11
option(BUILD_TESTS "Build tests" ON)
12
+
13
+# CLANGARM64 does not have libatomic which used by googletest, disable it
14
+if(MINGW AND CMAKE_SYSTEM_PROCESSOR MATCHES "ARM64")
15
+ set(BUILD_TESTS ON CACHE BOOL "Build tests" FORCE)
16
+endif()
17
18
option(NPM_OFFLINE "Use offline npm packages. You must ensure packages are in your npm cache." OFF)
19
20
option(BUILD_WERROR "Enable -Werror flag." OFF)
0 commit comments