initial dub project

This commit is contained in:
Josh Holtrop 2013-10-27 12:46:17 -04:00
commit 1dedfa41bb
3 changed files with 21 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.dub
/d-dub-proj

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "d-dub-proj",
"description": "An example project skeleton",
"homepage": "http://example.org",
"copyright": "Copyright © 2000, Your Name",
"authors": [
"Josh Holtrop"
],
"dependencies": {
"derelict-gl3": "~master",
"derelict-sdl2": "~master"
}
}

6
source/app.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}