summaryrefslogtreecommitdiff
path: root/xmake/core/project/target.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-12 21:27:13 +0800
committerruki <[email protected]>2025-01-12 21:27:13 +0800
commit543fa337184df181eae18b35eb8f80c125ab8a84 (patch)
treedf9a70fea3cec29276a389fda86983c761ad16ac /xmake/core/project/target.lua
parent5bc5ce579fe5af900fc5dd653dfde7be486ea9a1 (diff)
fix errors for apis
Diffstat (limited to 'xmake/core/project/target.lua')
-rw-r--r--xmake/core/project/target.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua
index a8796076c..360edb9cc 100644
--- a/xmake/core/project/target.lua
+++ b/xmake/core/project/target.lua
@@ -57,7 +57,9 @@ function _instance.new(name, info)
local instance = table.inherit(_instance)
instance._INFO = info
instance._CACHEID = 1
- instance:name_set(name)
+ if name then
+ instance:name_set(name)
+ end
return instance
end