summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index c7ed254cb..404016b65 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -487,6 +487,10 @@ function addSourceDir(path)
path .. "/*.h", -- Header files
path .. "/*.hpp", -- C++ style headers (for glslang)
path .. "/*.natvis", -- Visual Studio debugger visualization files
+ path .. "/*.natstepfilter", -- Visual Studio debugger step filter files
+ path .. "/*.natjmc", -- Visual Studio debugger step filter files
+
+
}
removefiles
{
@@ -613,7 +617,7 @@ function baseSlangProject(name, sourceDir)
--
vpaths {
{ ["Header Files"] = { "**.h", "**.hpp"} },
- { ["Source Files"] = { "**.cpp", "**.slang", "**.natvis" } },
+ { ["Source Files"] = { "**.cpp", "**.slang", "**.natvis", "**.natjmc" } },
}
-- Override default options for a project if necessary