hpr-cpp/xmake.lua
2024-03-14 15:57:16 +05:00

17 lines
281 B
Lua

set_project("hpr")
set_version("0.0.1")
add_rules("mode.debug", "mode.release")
if is_mode("debug") then
add_defines("HPR_DEBUG")
end
if is_plat("linux") and is_mode("debug") then
add_ldflags("-rdynamic")
end
set_optimize("fastest")
includes("source")