Dub updates
This commit is contained in:
parent
47f454711d
commit
ecf476a341
|
@ -35,3 +35,7 @@ githash.txt
|
|||
|
||||
# GDB history
|
||||
.gdb_history
|
||||
|
||||
# Dub stuff
|
||||
.dub
|
||||
dub.selections.json
|
||||
|
|
5
dub.json
5
dub.json
|
@ -6,9 +6,10 @@
|
|||
"license" : "Boost Software License - Version 1.0",
|
||||
"targetType": "executable",
|
||||
"preBuildCommands": ["git log -1 --format='%H' > githash.txt"],
|
||||
"stringImportPaths": ["."],
|
||||
"versions": ["built_with_dub"],
|
||||
"dependencies": {
|
||||
"libdparse": "0.2.1",
|
||||
"libdparse": "~>0.3.0",
|
||||
"dsymbol": "~>0.1.0",
|
||||
"inifiled": ">=0.0.3",
|
||||
},
|
||||
}
|
||||
|
|
|
@ -8,9 +8,10 @@ module dscanner_version;
|
|||
/**
|
||||
* Human-readable version number
|
||||
*/
|
||||
enum DSCANNER_VERSION = "v0.2.0-beta1";
|
||||
enum DSCANNER_VERSION = "v0.3.0-alpha";
|
||||
|
||||
version (Windows) {}
|
||||
else version (built_with_dub) {}
|
||||
else
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -110,6 +110,8 @@ int main(string[] args)
|
|||
{
|
||||
version (Windows)
|
||||
writeln(DSCANNER_VERSION);
|
||||
else version(built_with_dub)
|
||||
writeln(DSCANNER_VERSION);
|
||||
else
|
||||
write(DSCANNER_VERSION, " ", GIT_HASH);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue