Skip to content

Commit

Permalink
update bee
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Jun 29, 2024
1 parent 327222b commit e11fd90
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 13 deletions.
3 changes: 0 additions & 3 deletions compile/common/launcher.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ lm:lua_src 'launcher_source' {
defines = {
"BEE_INLINE",
},
msvc = {
flags = "/utf-8",
},
windows = {
defines = "_CRT_SECURE_NO_WARNINGS",
links = {
Expand Down
3 changes: 0 additions & 3 deletions compile/common/lua-debug.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ if lm.os == "windows" then
"src/process_inject/windows/*.cpp",
"3rd/wow64ext/src/wow64ext.cpp",
},
msvc = {
flags = "/utf-8",
},
links = "advapi32",
}
end
Expand Down
6 changes: 0 additions & 6 deletions compile/common/runtime.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ lm:source_set 'luadbg' {
sources = {
"src/luadebug/luadbg/*.cpp",
},
msvc = {
flags = "/utf-8",
},
linux = {
flags = "-fPIC"
},
Expand Down Expand Up @@ -223,9 +220,6 @@ for _, luaver in ipairs {
"src/luadebug/util/*.cpp",
"src/luadebug/"..compat[luaver].."/**/*.cpp",
},
msvc = {
flags = "/utf-8",
},
windows = {
deps = luaver..'/'..luaver,
defines = {
Expand Down
1 change: 1 addition & 0 deletions compile/windows/make.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ local lm = require "luamake"

lm.arch = "x86"
lm.runtime_platform = "win32-ia32"

require "compile.windows.runtime"
require "compile.common.run_luamake"

Expand Down
4 changes: 4 additions & 0 deletions compile/windows/runtime.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
local lm = require "luamake"

lm:conf {
flags = "/utf-8",
}

require "compile.common.config"

local platform = lm.runtime_platform
Expand Down

0 comments on commit e11fd90

Please sign in to comment.