Skip to content
Snippets Groups Projects
Commit 608b599b authored by Karsten Rink's avatar Karsten Rink Committed by Tom Fischer
Browse files

replaced BuildInfo with GitInfo

parent 98c9399b
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <tclap/CmdLine.h> #include <tclap/CmdLine.h>
#include "BaseLib/BuildInfo.h" #include "InfoLib/GitInfo.h"
#include "BaseLib/FileTools.h" #include "BaseLib/FileTools.h"
#include "Applications/ApplicationsLib/LogogSetup.h" #include "Applications/ApplicationsLib/LogogSetup.h"
#include "Applications/FileIO/AsciiRasterInterface.h" #include "Applications/FileIO/AsciiRasterInterface.h"
...@@ -29,11 +29,11 @@ int main(int argc, char* argv[]) ...@@ -29,11 +29,11 @@ int main(int argc, char* argv[])
"equidistant intervals between them (i.e. for n=1, one new raster " "equidistant intervals between them (i.e. for n=1, one new raster "
"located precisely in the middle will be created).\n\n" "located precisely in the middle will be created).\n\n"
"OpenGeoSys-6 software, version " + "OpenGeoSys-6 software, version " +
BaseLib::BuildInfo::ogs_version + GitInfoLib::GitInfo::ogs_version +
".\n" ".\n"
"Copyright (c) 2012-2019, OpenGeoSys Community " "Copyright (c) 2012-2019, OpenGeoSys Community "
"(http://www.opengeosys.org)", "(http://www.opengeosys.org)",
' ', BaseLib::BuildInfo::ogs_version); ' ', GitInfoLib::GitInfo::ogs_version);
TCLAP::ValueArg<std::string> input1_arg( TCLAP::ValueArg<std::string> input1_arg(
"", "file1", "First DEM-raster file", true, "", "file1.asc"); "", "file1", "First DEM-raster file", true, "", "file1.asc");
cmd.add(input1_arg); cmd.add(input1_arg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment