Dub updates
This commit is contained in:
parent
47f454711d
commit
ecf476a341
|
@ -35,3 +35,7 @@ githash.txt
|
||||||
|
|
||||||
# GDB history
|
# GDB history
|
||||||
.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",
|
"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",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue