Skip to content

Commit

Permalink
Merge pull request #4783 from PerikiyoXD/master
Browse files Browse the repository at this point in the history
fix: Passing `is_debug` to gn
  • Loading branch information
waruqi authored Feb 29, 2024
2 parents f86fca0 + ab2d675 commit 7659e6d
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 7659e6d

Please sign in to comment.