Skip to content

Commit

Permalink
Update version output from cadet-cli (#277)
Browse files Browse the repository at this point in the history
* Update links in --version output

* Add build variant info to --version call.
  • Loading branch information
ronald-jaepel authored Aug 20, 2024
1 parent 7818e41 commit ce5c8b3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions include/common/TclapUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ namespace TCLAP
{
std::cout << "This is " << _progName << " version " << cadet::getLibraryVersion() << " (" << cadet::getLibraryBranchRefspec() << " branch)\n";
std::cout << "Built from commit " << cadet::getLibraryCommitHash() << "\n";
std::cout << "CADET homepage: <http://www.cadet-web.de>\n";
std::cout << "Fork CADET on GitHub: <https://github.com/modsim/CADET>\n";
std::cout << "Report bugs to the issue tracker on GitHub or <[email protected]>\n";
std::cout << "Build variant " << cadet::getLibraryBuildType() << "\n";
std::cout << "CADET homepage: <https://cadet.github.io>\n";
std::cout << "Fork CADET on GitHub: <https://github.com/cadet/CADET-Core>\n";
std::cout << "Report bugs to the issue tracker on GitHub or <[email protected]>\n";
std::cout << "See the accompanying LICENSE.txt, AUTHORS, and CONTRIBUTORS files" << std::endl;
}

Expand All @@ -60,8 +61,8 @@ namespace TCLAP
virtual void version(CmdLineInterface& c)
{
std::cout << "This is " << _progName << "\n";
std::cout << "CADET homepage: <http://www.cadet-web.de>\n";
std::cout << "Fork CADET on GitHub: <https://github.com/modsim/CADET>\n";
std::cout << "CADET homepage: <https://cadet.github.io>\n";
std::cout << "Fork CADET on GitHub: <https://github.com/cadet/CADET-Core>\n";
std::cout << "Report bugs to the issue tracker on GitHub or <[email protected]>\n";
std::cout << "See the accompanying LICENSE.txt, AUTHORS, and CONTRIBUTORS files" << std::endl;
}
Expand Down

0 comments on commit ce5c8b3

Please sign in to comment.