diff options
author | Thomas White <taw@physics.org> | 2020-07-29 15:44:02 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:45 +0200 |
commit | 42898f7d59e215434fa2aead84223f64b30fcee8 (patch) | |
tree | 5cdfb4c0c279c766efcbbc6c455ee58a5c8741f1 /src/get_hkl.c | |
parent | 6105a7797b96418d940ced7d88c6cf2b308b9711 (diff) |
New way of injecting version information
Also, this fixes some incorrect headers and adds --version flags to
programs which didn't yet have them.
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 3f3d6637..31d04181 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -38,11 +38,13 @@ #include <unistd.h> #include <getopt.h> -#include "utils.h" -#include "reflist-utils.h" -#include "symmetry.h" -#include "cell.h" -#include "cell-utils.h" +#include <utils.h> +#include <reflist-utils.h> +#include <symmetry.h> +#include <cell.h> +#include <cell-utils.h> + +#include "version.h" static void show_help(const char *s) @@ -503,8 +505,10 @@ int main(int argc, char *argv[]) return 0; case 5 : - printf("CrystFEL: " CRYSTFEL_VERSIONSTRING "\n"); - printf(CRYSTFEL_BOILERPLATE"\n"); + printf("CrystFEL: %s\n", + crystfel_version_string()); + printf("%s\n", + crystfel_licence_string()); return 0; case 't' : |