Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
14
Src/external_dependencies/openmpt-trunk/include/premake/scripts/docscheck.lua
vendored
Normal file
14
Src/external_dependencies/openmpt-trunk/include/premake/scripts/docscheck.lua
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
-- Validate documentation for Premkake APIs.
|
||||
---
|
||||
|
||||
local count = 0
|
||||
for k,v in pairs(premake.field._loweredList) do
|
||||
local docfilepath = "../website/docs/" .. k .. ".md"
|
||||
local exists = os.isfile(docfilepath)
|
||||
if not exists then
|
||||
print("Missing documentation file for: ", k)
|
||||
count = count + 1
|
||||
end
|
||||
end
|
||||
os.exit(count)
|
Loading…
Add table
Add a link
Reference in a new issue