Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2017-04-12 00:39:19 +0300
committerOliver Schneider <oliver@assarbad.net>2017-04-12 00:39:19 +0300
commit88db6a2ab92f882b4ba13d73868bdaa2d4687aae (patch)
tree847fb7702105237ff45634e585b4fee8c8875db0 /src/actions
parent199dfb07ada3f9ff3b99d768c62eb11e70fed78a (diff)
Fixed a glitch ... node should have passed to the newly introduced function as well
--HG-- branch : WDS-build
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/vstudio/vs200x_vcproj.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/vstudio/vs200x_vcproj.lua b/src/actions/vstudio/vs200x_vcproj.lua
index fbef6a6..d119fa6 100644
--- a/src/actions/vstudio/vs200x_vcproj.lua
+++ b/src/actions/vstudio/vs200x_vcproj.lua
@@ -103,7 +103,7 @@
end
- function vc200x.individualSourceFile(prj, depth, fname)
+ function vc200x.individualSourceFile(prj, depth, fname, node)
-- handle file configuration stuff. This needs to be cleaned up and simplified.
-- configurations are cached, so this isn't as bad as it looks
for _, cfginfo in ipairs(prj.solution.vstudio_configs) do
@@ -176,7 +176,7 @@
_p(depth, '\t>')
depth = depth + 1
- vc200x.individualSourceFile(prj, depth, fname)
+ vc200x.individualSourceFile(prj, depth, fname, node)
depth = depth - 1
_p(depth, '</File>')