diff --git a/packages/m/microsoft-detours/xmake.lua b/packages/m/microsoft-detours/xmake.lua index 80a36e88b..ccbd263b7 100644 --- a/packages/m/microsoft-detours/xmake.lua +++ b/packages/m/microsoft-detours/xmake.lua @@ -1,5 +1,4 @@ package("microsoft-detours") - set_homepage("https://github.com/microsoft/Detours") set_description("Detours is a software package for monitoring and instrumenting API calls on Windows. It is distributed in source code form.") set_license("MIT") @@ -7,8 +6,7 @@ package("microsoft-detours") set_urls("https://github.com/microsoft/Detours.git") add_versions("2023.6.8", "734ac64899c44933151c1335f6ef54a590219221") - on_install("windows", function (package) - local configs = {} + on_install("windows", "mingw", function (package) io.writefile("xmake.lua", [[ add_rules("mode.debug", "mode.release") target("microsoft-detours") @@ -20,13 +18,10 @@ package("microsoft-detours") add_defines("DETOUR_DEBUG=1") end ]]) - if package:config("shared") then - configs.kind = "shared" - end if package:is_debug() then package:add("defines", "DETOUR_DEBUG=1") end - import("package.tools.xmake").install(package, configs) + import("package.tools.xmake").install(package) end) on_test(function (package)