Dub updates

This commit is contained in:
Hackerpilot 2016-01-14 00:25:19 -08:00
parent 47f454711d
commit ecf476a341
4 changed files with 11 additions and 3 deletions

4
.gitignore vendored
View File

@ -35,3 +35,7 @@ githash.txt
# GDB history # GDB history
.gdb_history .gdb_history
# Dub stuff
.dub
dub.selections.json

View File

@ -6,9 +6,10 @@
"license" : "Boost Software License - Version 1.0", "license" : "Boost Software License - Version 1.0",
"targetType": "executable", "targetType": "executable",
"preBuildCommands": ["git log -1 --format='%H' > githash.txt"], "preBuildCommands": ["git log -1 --format='%H' > githash.txt"],
"stringImportPaths": ["."], "versions": ["built_with_dub"],
"dependencies": { "dependencies": {
"libdparse": "0.2.1", "libdparse": "~>0.3.0",
"dsymbol": "~>0.1.0",
"inifiled": ">=0.0.3", "inifiled": ">=0.0.3",
}, },
} }

View File

@ -8,9 +8,10 @@ module dscanner_version;
/** /**
* Human-readable version number * Human-readable version number
*/ */
enum DSCANNER_VERSION = "v0.2.0-beta1"; enum DSCANNER_VERSION = "v0.3.0-alpha";
version (Windows) {} version (Windows) {}
else version (built_with_dub) {}
else else
{ {
/** /**

View File

@ -110,6 +110,8 @@ int main(string[] args)
{ {
version (Windows) version (Windows)
writeln(DSCANNER_VERSION); writeln(DSCANNER_VERSION);
else version(built_with_dub)
writeln(DSCANNER_VERSION);
else else
write(DSCANNER_VERSION, " ", GIT_HASH); write(DSCANNER_VERSION, " ", GIT_HASH);
return 0; return 0;