Updated module headers (generation)

Former-commit-id: a9a2e4eaeda16caa67989ae81c55ac090b1454de
This commit is contained in:
Lynix
2014-07-11 10:23:19 +02:00
parent b54be6e25f
commit ca54b6cdca
4 changed files with 13 additions and 6 deletions

View File

@@ -36,7 +36,8 @@ function generateHeaders()
local count = 0
for k, filePath in pairs(files) do
local include, fileName = filePath:match(".*(Nazara/.*/(.*))")
if (fileName ~= "Debug.hpp" and
if (fileName ~= "ConfigCheck.hpp" and
fileName ~= "Debug.hpp" and
fileName ~= "DebugOff.hpp" and
fileName ~= "ThreadSafety.hpp" and
fileName ~= "ThreadSafetyOff.hpp") then
@@ -48,7 +49,7 @@ function generateHeaders()
header:write("\n#endif // " .. preprocessorName .. "\n")
header:close()
print(string.format("-# of includes: %d", count))
print(string.format("-#include count: %d", count))
end
end