diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-11-02 07:10:18 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-11-02 07:10:18 +0100 |
commit | 54549c6c08494781aec262987411fe3a354ffd73 (patch) | |
tree | e5191adf6ee820f51386629be2fdf98085f509b1 /src/zmq2farsync/zmq2farsync.cpp | |
parent | d81d01682e4a16a27e7140c339e6bb8ee69e4286 (diff) | |
download | dabmux-54549c6c08494781aec262987411fe3a354ffd73.tar.gz dabmux-54549c6c08494781aec262987411fe3a354ffd73.tar.bz2 dabmux-54549c6c08494781aec262987411fe3a354ffd73.zip |
Add --version to zmq2edi and zmq2farsync
Diffstat (limited to 'src/zmq2farsync/zmq2farsync.cpp')
-rw-r--r-- | src/zmq2farsync/zmq2farsync.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/zmq2farsync/zmq2farsync.cpp b/src/zmq2farsync/zmq2farsync.cpp index 95dc074..2c29087 100644 --- a/src/zmq2farsync/zmq2farsync.cpp +++ b/src/zmq2farsync/zmq2farsync.cpp @@ -57,6 +57,18 @@ static void usage() int main(int argc, char **argv) { + // Version handling is done very early to ensure nothing else but the version gets printed out + if (argc == 2 and strcmp(argv[1], "--version") == 0) { + fprintf(stdout, "%s\n", +#if defined(GITVERSION) + GITVERSION +#else + PACKAGE_VERSION +#endif + ); + return 0; + } + etiLog.level(info) << "ZMQ2FarSync ETI converter from " << PACKAGE_NAME << " " << #if defined(GITVERSION) |