dropshell/src/version.cpp
Your Name 10d663971c .
2025-04-21 11:19:05 +12:00

13 lines
353 B
C++

#include "dropshell.hpp"
#include <iostream>
namespace dropshell {
void print_version() {
std::cout << "dropshell version " << VERSION << std::endl;
std::cout << "Release date: " << RELEASE_DATE << std::endl;
std::cout << "Author: " << AUTHOR << std::endl;
std::cout << "License: " << LICENSE << std::endl;
}
} // namespace dropshell