diff options
| author | ruki <[email protected]> | 2020-11-18 00:49:28 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-11-18 00:49:28 +0800 |
| commit | b7aee98613d00f768010cdf95273a9bf129ad906 (patch) | |
| tree | b5795035081605f12874e0f359c55f87b6f5575d /xmake/modules/core/tools/cl.lua | |
| parent | 3755fe7dce45586dbe9c72b62358a08bc5d07e5c (diff) | |
show full file path in vscode
Diffstat (limited to 'xmake/modules/core/tools/cl.lua')
| -rw-r--r-- | xmake/modules/core/tools/cl.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua index 371fcf6aa..f5fac3cb2 100644 --- a/xmake/modules/core/tools/cl.lua +++ b/xmake/modules/core/tools/cl.lua @@ -33,6 +33,12 @@ function init(self) -- init cxflags self:set("cxflags", "-nologo") + -- we need show full file path to goto error position if xmake is called in vstudio + -- https://github.com/xmake-io/xmake/issues/1049 + if os.getenv("XMAKE_IN_VSTUDIO") then + self:add("cxflags", "-FC") + end + -- init flags map self:set("mapflags", { |
