Commit Graph

8 Commits

Author SHA1 Message Date
Soeren Apel 41e2ade4fc Update cli usage hint and remove unnecessary description text
I don't know any cli tool that shows a description text
on the same line as the usage and sigrok-cli doesn't do it
either, so it shouldn't be there.
As I don't see any other place where it would make sense,
I remove it completely.
2017-06-06 16:17:26 +02:00
Uwe Hermann d93ac5e877 build: Add missing check for glibmm.
Also, list the glibmm version in config.h.
2017-05-26 18:44:23 +02:00
Uwe Hermann 793208c83a Append "-git" to the version string.
This avoids confusion with the released tarballs.

This fixes bug #609.
2015-07-18 17:48:13 +02:00
Marcus Comstedt 9df8453f68 Check if unportable sample pack/unpack works and in that case use it. 2014-02-19 16:35:06 +01:00
Uwe Hermann 7d297a015d Cosmetics. 2012-10-13 15:06:50 +02:00
Joel Holdsworth d4384c6d5c Added --help option 2012-10-13 15:02:59 +02:00
Joel Holdsworth f7951df4a1 Added --version option 2012-10-13 15:02:58 +02:00
Alexandru Gagniuc 075fb4995a Generate a config.h file for versioning
Versioning was already handled in CMakeLists.txt, but it was handled
in a non-standard and unclear manner. We used
    set(VERSION
for starters. While this is valid CMake syntax, VERSION is also a
reserved word in cmake, depending on the context. We were
communicating the version information by a compile-time define, again,
not a recommended practice.

Change versioning to the more standard way of
    set(*VERSION_MAJOR
    set(*VERSION_MINOR
    set(*VERSION_MICRO
    set(*VERSION_STRING

Instead of defining the version at compile time, generate a config.h
file with the version information.

Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
2012-10-13 15:02:44 +02:00