summaryrefslogtreecommitdiff
path: root/xmake/modules/core/tools/cl.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-06-30 22:49:45 +0800
committerruki <[email protected]>2023-06-30 22:49:45 +0800
commitc0054507841b34eddfe163fc4b64ff39bb3865a0 (patch)
tree8c3d58bdc7b21b84179812559a0ccb1544c2e149 /xmake/modules/core/tools/cl.lua
parentb408fc1e987970fc00c0afdebedd5d99376a1307 (diff)
fix pch for clang-cl #3905
Diffstat (limited to 'xmake/modules/core/tools/cl.lua')
-rw-r--r--xmake/modules/core/tools/cl.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua
index 2a0bc556c..e5addc78a 100644
--- a/xmake/modules/core/tools/cl.lua
+++ b/xmake/modules/core/tools/cl.lua
@@ -314,11 +314,7 @@ end
-- make the c precompiled header flag
function nf_pcheader(self, pcheaderfile, target)
-
- -- for c source file
if self:kind() == "cc" then
-
- -- patch objectfile
local objectfiles = target:objectfiles()
if objectfiles then
table.insert(objectfiles, target:pcoutputfile("c") .. ".obj")
@@ -329,11 +325,7 @@ end
-- make the c++ precompiled header flag
function nf_pcxxheader(self, pcheaderfile, target)
-
- -- for c++ source file
if self:kind() == "cxx" then
-
- -- patch objectfile
local objectfiles = target:objectfiles()
if objectfiles then
table.insert(objectfiles, target:pcoutputfile("cxx") .. ".obj")