21 lines
446 B
D
21 lines
446 B
D
// Copyright Brian Schott (Hackerpilot) 2015.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
module dscanner_version;
|
|
|
|
/**
|
|
* Human-readable version number
|
|
*/
|
|
enum DSCANNER_VERSION = "v0.2.0-dev";
|
|
|
|
version (Windows) {}
|
|
else
|
|
{
|
|
/**
|
|
* Current build's Git commit hash
|
|
*/
|
|
enum GIT_HASH = import("githash.txt");
|
|
}
|