#include #include "buildinformation.h" 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; }