diff options
| author | ruki <[email protected]> | 2022-04-08 09:49:26 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-04-08 09:49:26 +0800 |
| commit | df7c435cc7e09a2aa834289f534e04195872140f (patch) | |
| tree | 001c5ee03fa4e0c7601893f5c60c6c59eef3bd50 | |
| parent | 26e6cc713cc42bf4d47c47d178b26f5f6234f91f (diff) | |
| parent | af899eb332fff45e7e369a208ea819c102e67bf8 (diff) | |
Merge pull request #2248 from SirLynix/patch-11
fix vsxmake generator
| -rw-r--r-- | xmake/plugins/project/vsxmake/getinfo.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/vsxmake/getinfo.lua b/xmake/plugins/project/vsxmake/getinfo.lua index a2623f226..57a7d9289 100644 --- a/xmake/plugins/project/vsxmake/getinfo.lua +++ b/xmake/plugins/project/vsxmake/getinfo.lua @@ -490,7 +490,7 @@ function main(outputdir, vsinfo) dir_id = hash.uuid4(dir) } end - dir = path.directory(dir) + dir = path.directory(dir) or "." end end target._dirs = dirs |
