dump-build-information/main.cpp

13 lines
339 B
C++
Raw Normal View History

2017-08-27 11:19:39 +00:00
#include <iostream>
2017-08-27 14:54:47 +00:00
#include "buildinformation.h"
2017-08-27 11:19:39 +00:00
void print_build_information(){
std::cout << "Build from revision: " << GIT_VERSION << std::endl;
std::cout << "Compiled with: " << USED_COMPILER << std::endl;
std::cout << "With the following flags: " << USED_FLAGS << std::endl;
}
int main(){
print_build_information();
return 0;
}