This commit is contained in:
NishiOwO 2025-04-12 11:51:29 +09:00
parent d65ca84749
commit 2505faa0fd
No known key found for this signature in database
GPG Key ID: 27EF69B208EB9343
2 changed files with 9 additions and 11 deletions

View File

@ -187,16 +187,15 @@ function gf_msvc_filters()
"options:engine=dynamic",
"configurations:" .. rt
})
buildoptions({"/MD"})
runtime("Release")
staticruntime("On")
linkoptions({"/MANIFEST"})
runtime(rt)
staticruntime("Off")
filter({
"options:cc=msc",
"options:engine=static",
"configurations:" .. rt
})
buildoptions({"/MT"})
runtime("Release")
runtime(rt)
staticruntime("On")
end
end
@ -250,7 +249,6 @@ project("GoldFish")
"external/lua/ltests.c",
"external/lua/ltests.h"
})
filter({})
removefiles({
"external/lua/lua.c"
})

View File

@ -42,16 +42,16 @@ function msvc_filters()
"options:engine=dynamic",
"configurations:" .. rt
})
buildoptions({"/MD"})
runtime("Release")
staticruntime("On")
linkoptions({"/MANIFEST"})
runtime(rt)
staticruntime("Off")
filter({
"options:cc=msc",
"options:engine=static",
"configurations:" .. rt
})
buildoptions({"/MT"})
runtime("Release")
linkoptions({"/MANIFEST"})
runtime(rt)
staticruntime("On")
end
end