From 608b599b73b86abfa1bcbc8c77f2ffc3be5724e6 Mon Sep 17 00:00:00 2001
From: rinkk <karsten.rink@ufz.de>
Date: Thu, 5 Sep 2019 15:57:19 +0200
Subject: [PATCH] replaced BuildInfo with GitInfo

---
 .../Utils/MeshGeoTools/createIntermediateRasters.cpp        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp b/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
index 6ac5b8ab792..4d78b426d6f 100644
--- a/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
+++ b/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
@@ -13,7 +13,7 @@
 
 #include <tclap/CmdLine.h>
 
-#include "BaseLib/BuildInfo.h"
+#include "InfoLib/GitInfo.h"
 #include "BaseLib/FileTools.h"
 #include "Applications/ApplicationsLib/LogogSetup.h"
 #include "Applications/FileIO/AsciiRasterInterface.h"
@@ -29,11 +29,11 @@ int main(int argc, char* argv[])
         "equidistant intervals between them (i.e. for n=1, one new raster "
         "located precisely in the middle will be created).\n\n"
         "OpenGeoSys-6 software, version " +
-            BaseLib::BuildInfo::ogs_version +
+            GitInfoLib::GitInfo::ogs_version +
             ".\n"
             "Copyright (c) 2012-2019, OpenGeoSys Community "
             "(http://www.opengeosys.org)",
-        ' ', BaseLib::BuildInfo::ogs_version);
+        ' ', GitInfoLib::GitInfo::ogs_version);
     TCLAP::ValueArg<std::string> input1_arg(
         "", "file1", "First DEM-raster file", true, "", "file1.asc");
     cmd.add(input1_arg);
-- 
GitLab