drogon/drogon_ctl/version.cc

38 lines
1.0 KiB
C++
Raw Normal View History

2018-05-31 17:00:31 +08:00
/**
*
2018-12-07 15:50:18 +08:00
* version.cc
* An Tao
2018-05-31 17:00:31 +08:00
*
* Copyright 2018, An Tao. All rights reserved.
2018-12-07 15:50:18 +08:00
* https://github.com/an-tao/drogon
2018-05-31 17:00:31 +08:00
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
2018-11-16 13:26:14 +08:00
* Drogon
2018-05-31 17:00:31 +08:00
*
*/
2018-05-28 17:08:12 +08:00
#include "version.h"
#include <drogon/config.h>
#include <drogon/version.h>
2018-05-28 17:08:12 +08:00
#include <iostream>
using namespace drogon_ctl;
2019-05-18 20:39:57 +08:00
static const char banner[] =
" _ \n"
" __| |_ __ ___ __ _ ___ _ __ \n"
" / _` | '__/ _ \\ / _` |/ _ \\| '_ \\ \n"
"| (_| | | | (_) | (_| | (_) | | | |\n"
" \\__,_|_| \\___/ \\__, |\\___/|_| |_|\n"
" |___/ \n";
2018-05-28 17:08:12 +08:00
void version::handleCommand(std::vector<std::string> &parameters)
2018-05-28 17:08:12 +08:00
{
2018-10-14 15:56:54 +08:00
std::cout << banner << std::endl;
2019-06-05 09:28:39 +08:00
std::cout << "A utility for drogon" << std::endl;
2020-02-06 22:13:50 +08:00
std::cout << "Version: " << DROGON_VERSION << std::endl;
std::cout << "Git commit: " << DROGON_VERSION_SHA1 << std::endl;
std::cout << "Compile config: " << COMPILATION_FLAGS << " " << INCLUDING_DIRS
2019-05-18 20:39:57 +08:00
<< std::endl;
2018-11-16 13:26:14 +08:00
}