Skip to content

Commit

Permalink
fix: Passing is_debug to gn
Browse files Browse the repository at this point in the history
  • Loading branch information
PerikiyoXD committed Feb 29, 2024
1 parent f86fca0 commit ab2d675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmake/modules/package/tools/gn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function _get_configs(package, configs, opt)
elseif package:is_arch("arm.*") then
configs.target_cpu = "arm"
end
configs.is_debug = package:is_debug()
configs.is_debug = package:is_debug() and "true" or "false"
return configs
end

Expand Down

0 comments on commit ab2d675

Please sign in to comment.