Skip to content

Commit

Permalink
Merge branch 'dev/help-flag' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
mleotta committed Jun 16, 2020
2 parents 08030e1 + e2fbb1b commit adce1b1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions tools/analyze_tracks.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ static int maptk_main(int argc, char const* argv[])
arg.Initialize( argc, argv );

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "--config", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "-c", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "--output-config", argT::SPACE_ARGUMENT, &opt_out_config,
Expand Down
1 change: 1 addition & 0 deletions tools/apply_gcp.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ static int maptk_main(int argc, char const* argv[])
typedef kwiversys::CommandLineArguments argT;

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "--config", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "-c", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "--output-config", argT::SPACE_ARGUMENT, &opt_out_config,
Expand Down
1 change: 1 addition & 0 deletions tools/bundle_adjust_tracks.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ static int maptk_main(int argc, char const* argv[])
typedef kwiversys::CommandLineArguments argT;

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "--config", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "-c", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "--output-config", argT::SPACE_ARGUMENT, &opt_out_config,
Expand Down
1 change: 1 addition & 0 deletions tools/estimate_homography.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ static int maptk_main(int argc, char const* argv[])
arg.Initialize( argc, argv );

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );

arg.AddArgument( "--config", argT::SPACE_ARGUMENT, &opt_config,
"Optional custom configuration file for the tool. Defaults are set such "
Expand Down
1 change: 1 addition & 0 deletions tools/match_matrix.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ static int maptk_main(int argc, char const* argv[])
arg.Initialize( argc, argv );

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "--input-tracks", argT::SPACE_ARGUMENT, &opt_in_tracks, "Input track file." );
arg.AddArgument( "--output-matrix", argT::SPACE_ARGUMENT, &opt_out_matrix, "Output match matrix file" );
arg.AddArgument( "--output-frames", argT::SPACE_ARGUMENT, &opt_out_frames, "Output frame number file" );
Expand Down
1 change: 1 addition & 0 deletions tools/pos2krtd.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ static int maptk_main(int argc, char const* argv[])
typedef kwiversys::CommandLineArguments argT;

arg.AddArgument( "--help", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "-h", argT::NO_ARGUMENT, &opt_help, "Display usage information" );
arg.AddArgument( "--config", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "-c", argT::SPACE_ARGUMENT, &opt_config, "Configuration file for tool" );
arg.AddArgument( "--output-config", argT::SPACE_ARGUMENT, &opt_out_config,
Expand Down

0 comments on commit adce1b1

Please sign in to comment.