Skip to content

Commit 67a6d34

Browse files
committed
Use "filename" as help argument description
This means `--help` will, instead of "--model arg", show "--model filename".
1 parent 2e874b8 commit 67a6d34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/scm-to-cereal.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ int main(int argc, char* argv[])
3737
options.add_options()
3838
("h,help", "display the help message")
3939
("m,model", "a CVSSP .scm Morphable Model file",
40-
cxxopts::value<std::string>())
40+
cxxopts::value<std::string>(), "filename")
4141
("t,isomap", "optional text file containing CVSSP texture mapping coordinates",
42-
cxxopts::value<std::string>())
42+
cxxopts::value<std::string>(), "filename")
4343
("s,shape-only", "save only the shape-model part of the full 3DMM",
4444
cxxopts::value<bool>()->default_value("false")->implicit_value("true"))
4545
("o,output", "output filename for the Morphable Model in cereal binary format",
46-
cxxopts::value<std::string>()->default_value("converted_model.bin"));
46+
cxxopts::value<std::string>()->default_value("converted_model.bin"), "filename");
4747
// clang-format on
4848

4949
std::string scmmodelfile, outputfile;

0 commit comments

Comments
 (0)