drogon/drogon_ctl/version.cc

36 lines
1.1 KiB
C++
Raw Normal View History

2018-05-31 09:00:31 +00:00
/**
*
2018-12-07 07:50:18 +00:00
* version.cc
* An Tao
2018-05-31 09:00:31 +00:00
*
* Copyright 2018, An Tao. All rights reserved.
2018-12-07 07:50:18 +00:00
* https://github.com/an-tao/drogon
2018-05-31 09:00:31 +00:00
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
2018-11-16 05:26:14 +00:00
* Drogon
2018-05-31 09:00:31 +00:00
*
*/
2018-05-28 09:08:12 +00:00
#include "version.h"
#include <drogon/version.h>
#include <drogon/config.h>
2018-05-28 09:08:12 +00:00
#include <iostream>
using namespace drogon_ctl;
2018-10-14 07:56:54 +00:00
static const char banner[] = " _ \n"
" __| |_ __ ___ __ _ ___ _ __ \n"
" / _` | '__/ _ \\ / _` |/ _ \\| '_ \\ \n"
"| (_| | | | (_) | (_| | (_) | | | |\n"
" \\__,_|_| \\___/ \\__, |\\___/|_| |_|\n"
" |___/ \n";
2018-05-28 09:08:12 +00:00
void version::handleCommand(std::vector<std::string> &parameters)
2018-05-28 09:08:12 +00:00
{
2018-10-14 07:56:54 +00:00
std::cout << banner << std::endl;
std::cout << "drogon ctl tools" << std::endl;
std::cout << "version:" << VERSION << std::endl;
std::cout << "git commit:" << VERSION_MD5 << std::endl;
2018-10-16 03:18:29 +00:00
std::cout << "compile config:" << compileFlags <<" "<< includeDirs << std::endl;
2018-11-16 05:26:14 +00:00
}