Unverified Commit 9a80305c by John Kessenich Committed by GitHub

Merge pull request #2068 from jljusten/standalone-fix-long-help

standalone: Fix --help
parents 07a55839 6ad120ea
......@@ -654,6 +654,9 @@ void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItem
break;
} else if (lowerword == "version") {
Options |= EOptionDumpVersions;
} else if (lowerword == "help") {
usage();
break;
} else {
Error("unrecognized command-line option", argv[0]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment