ofen/xmake.lua

12 lines
315 B
Lua
Raw Normal View History

2025-01-08 10:24:48 +08:00
add_rules("mode.debug", "mode.release")
set_languages("c++17")
if is_plat("windows") then
add_cxxflags("/source-charset:utf-8")
end
if is_mode("debug") then
set_suffixname("d")
end
add_includedirs(path.join(os.scriptdir(), "include"), {public = true})
target("ofen")
set_kind("static")
add_files("src/*.cpp")