Show repo url in cli too.

This commit is contained in:
King_DuckZ 2020-03-21 10:32:28 +01:00
parent a0581cb7ab
commit 23010d032b

View file

@ -54,7 +54,8 @@ int main(int argc, char* argv[]) {
<< '\n'; << '\n';
std::cout << "Copyright (C) " COPYRIGHT_YEAR " Michele Santullo\n"; std::cout << "Copyright (C) " COPYRIGHT_YEAR " Michele Santullo\n";
std::cout << "This is free software; see the source for copying conditions. There is NO\n"; std::cout << "This is free software; see the source for copying conditions. There is NO\n";
std::cout << "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." << std::endl; std::cout << "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
std::cout << "To obtain source code please visit:\n -> " << PROJECT_REPO_URL << '\n';
return 0; return 0;
} }