diff options
| author | ruki <[email protected]> | 2017-07-28 15:44:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-07-28 15:44:47 +0800 |
| commit | 927858060bdb6b56f1650276f1edf718bc713051 (patch) | |
| tree | e0fec06ab5a2800d31f6b7b16d7d12ecb5970b00 /xmake/plugins/project/vstudio/impl/vs201x.lua | |
| parent | a7ad6c04a0064255466616c990f625b6dea5d6da (diff) | |
disable precompiled header for vcproj plugin
Diffstat (limited to 'xmake/plugins/project/vstudio/impl/vs201x.lua')
| -rw-r--r-- | xmake/plugins/project/vstudio/impl/vs201x.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/plugins/project/vstudio/impl/vs201x.lua b/xmake/plugins/project/vstudio/impl/vs201x.lua index ad60e33cc..7563eb5c7 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x.lua @@ -189,6 +189,10 @@ function make(outputdir, vsinfo) for targetname, target in pairs(project.targets()) do if not target:isphony() then + -- TODO + -- disable precompiled header first + target:set("precompiled_header", nil) + -- make target with the given mode and arch targets[targetname] = targets[targetname] or {} local _target = targets[targetname] |
