/* Application Details */
#define PV_TITLE "@PV_TITLE@"
+#define PV_DESCRIPTION "@PV_DESCRIPTION@"
+#define PV_BIN_NAME "@PROJECT_NAME@"
/* Pulseview version information */
#define PV_VERSION_MAJOR @PV_VERSION_MAJOR@
#include "config.h"
+void usage()
+{
+ fprintf(stderr,
+ "Usage:\n"
+ " %s — %s\n"
+ "\n"
+ "Help Options:\n"
+ " -V, --version Show release version\n"
+ " -h, -?, --help Show help option\n"
+ "\n", PV_BIN_NAME, PV_DESCRIPTION);
+}
+
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
while (1) {
static const struct option long_options[] = {
{"version", no_argument, 0, 'V'},
+ {"help", no_argument, 0, 'h'},
{0, 0, 0, 0}
};
- const char c = getopt_long(argc, argv, "V", long_options, NULL);
+ const char c = getopt_long(argc, argv,
+ "Vh?", long_options, NULL);
if (c == -1)
break;
// Print version info
fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
return 0;
+
+ case 'h':
+ case '?':
+ usage();
+ return 0;
}
}