-
Sorry, my browser re-posted.
2009-12-11 17:08:29 UTC by jshvrsn
-
When trying to build the project from outside the source tree, it fails when it tries to install the HTML files. My guess is that in docs\Makefile.am:
install-data-local :
$(mkdir_p) $(DESTDIR)$(docdir)
cp -R html $(DESTDIR)$(docdir)
needs to be changed to something like:
install-data-local :
$(mkdir_p) $(DESTDIR)$(docdir)
cp -R $(srcdir)/html $(DESTDIR)$(docdir)
And...
2009-12-11 17:07:48 UTC by jshvrsn
-
When trying to build the project from outside the source tree, it fails when it tries to install the HTML files. My guess is that in docs\Makefile.am:
install-data-local :
$(mkdir_p) $(DESTDIR)$(docdir)
cp -R html $(DESTDIR)$(docdir)
needs to be changed to something like:
install-data-local :
$(mkdir_p) $(DESTDIR)$(docdir)
cp -R $(srcdir)/html $(DESTDIR)$(docdir)
And...
2009-12-11 16:42:09 UTC by jshvrsn
-
Running ./test -ab should have the same output as ./test -a -b.
As far as what the output should be, "Mutually exclusive argument already set" seems reasonable.
2009-10-26 22:44:48 UTC by hantwister
-
mes5k committed patchset 324 of module tclap to the Templatized C++ Command Line Parser CVS repository, changing 4 files.
2009-10-25 03:49:00 UTC by mes5k
-
Ok, that's what I'm seeing too which is a bit different than the initial report, hence my confusion. So the question is, what message you like to see? Some ideas:
"XOR'd Argument already set"
"Mutually exclusive argument already set"
Something else? Any suggestions are welcome.
2009-10-25 03:31:48 UTC by mes5k
-
The incorrect behavior occurs when using the xor'ed switches together rather than seperate, for example:
./test -a -b
PARSE ERROR: Argument: -b (--bSwitch)
Argument already set!
Brief USAGE:
./test {-a|-b} [--] [--version] [-h]
...
./test -ab
PARSE ERROR:
Required argument missing:
Brief USAGE:
./test {-a|-b} [--] [--version] [-h]
...
2009-10-25 01:30:57 UTC by hantwister
-
Thanks for the patch, I just committed the change to CVS. This will make it into the next release, whenever that happens.
2009-10-23 21:43:35 UTC by mes5k
-
mes5k committed patchset 323 of module tclap to the Templatized C++ Command Line Parser CVS repository, changing 1 files.
2009-10-23 21:42:43 UTC by mes5k
-
That's not what I'm seeing. When I create a cmdline, xorAdd two SwitchArgs, and then specify both switches on the command line, I see the error message "Argument already set!", which, while not perfect, seems like a reasonable error message to me.
2009-10-23 21:22:28 UTC by mes5k