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:
Diffstat (limited to 'src/actions/vstudio/vs200x_vcproj.lua')
-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>')