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 46df933 commit 1c32dffCopy full SHA for 1c32dff
packages/a/aui/xmake.lua
@@ -100,6 +100,9 @@ package("aui")
100
"-DAUIB_NO_PRECOMPILED=TRUE",
101
"-DAUIB_DISABLE=ON"
102
}
103
+ if package:is_plat("windows") and package:is_arch("arm64") then
104
+ table.insert(configs, "-DCMAKE_SYSTEM_PROCESSOR=aarch64")
105
+ end
106
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
107
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
108
import("package.tools.cmake").install(package, configs)
0 commit comments