diff options
Diffstat (limited to '3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua')
-rw-r--r-- | 3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua b/3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua index 43b65de689c..57dff527da8 100644 --- a/3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua +++ b/3rdparty/genie/src/actions/fastbuild/fastbuild_project.lua @@ -30,7 +30,7 @@ local function compile(indentlevel, prj, cfg, commonbasepath) local firstflag = true for _, cfgexclude in ipairs(cfg.excludes) do - if path.isSourceFile(cfgexclude) then + if path.issourcefile(cfgexclude) then if firstflag then _p(indentlevel, '// Excluded files:') firstflag = false @@ -418,7 +418,7 @@ function premake.fastbuild.project(prj) local cppfiles = {} for file in premake.project.eachfile(prj) do - if path.isSourceFile(file.name) then + if path.issourcefile(file.name) then table.insert(cppfiles, file.name) end end |