16 lines
300 B
C++
16 lines
300 B
C++
#pragma once
|
|
|
|
// DUMMY VERSION - replaced by build process.
|
|
|
|
#include <string>
|
|
|
|
namespace dropshell {
|
|
|
|
// Version information
|
|
const std::string VERSION = "DEV";
|
|
const std::string RELEASE_DATE = "NEVER";
|
|
const std::string AUTHOR = "j842";
|
|
const std::string LICENSE = "MIT";
|
|
|
|
} // namespace dropshell
|