summaryrefslogtreecommitdiff
path: root/premake5.lua
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-12-03 14:48:42 -0800
committerGitHub <noreply@github.com>2020-12-03 14:48:42 -0800
commit277780ab7770453ed12e82df10d2a9d79ebf47dd (patch)
treeb89f24e1aac610e4e220aeb2f65651b90b3f8996 /premake5.lua
parenta82779887bf6f908c6759e539a35a1872892069e (diff)
Add github action to verify vs project file consistency. (#1625)
* Add github action to verify vs project file consistency. * fix solution files * fix project files
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 8b8a39933..bc0154319 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -302,6 +302,16 @@ function addSourceDir(path)
path .. "/*.hpp", -- C++ style headers (for glslang)
path .. "/*.natvis", -- Visual Studio debugger visualization files
}
+ removefiles
+ {
+ "**/*.meta.slang.h",
+ "**/slang-generated-*",
+ "**/slang-ast-generated*",
+ "**/slang-ref-object-generated*",
+ "**/*generated.h",
+ "**/*generated-macro.h"
+
+ }
end
--