mirror of https://github.com/adamdruppe/arsd.git
uri stuff available
This commit is contained in:
parent
e8cacb7277
commit
779bcb0199
4
dub.json
4
dub.json
|
|
@ -14,21 +14,25 @@
|
|||
"dflags-dmd": [
|
||||
"-mv=arsd.core=$PACKAGE_DIR/core.d",
|
||||
"-mv=arsd.string=$PACKAGE_DIR/string.d",
|
||||
"-mv=arsd.uri=$PACKAGE_DIR/uri.d",
|
||||
"-mv=arsd.conv=$PACKAGE_DIR/conv.d"
|
||||
],
|
||||
"dflags-ldc": [
|
||||
"--mv=arsd.core=$PACKAGE_DIR/core.d",
|
||||
"--mv=arsd.string=$PACKAGE_DIR/string.d",
|
||||
"--mv=arsd.uri=$PACKAGE_DIR/uri.d",
|
||||
"--mv=arsd.conv=$PACKAGE_DIR/conv.d"
|
||||
],
|
||||
"dflags-gdc": [
|
||||
"-fmodule-file=arsd.core=$PACKAGE_DIR/core.d",
|
||||
"-fmodule-file=arsd.string=$PACKAGE_DIR/string.d",
|
||||
"-fmodule-file=arsd.uri=$PACKAGE_DIR/uri.d",
|
||||
"-fmodule-file=arsd.conv=$PACKAGE_DIR/conv.d"
|
||||
],
|
||||
"sourceFiles": [
|
||||
"core.d",
|
||||
"string.d",
|
||||
"uri.d",
|
||||
"conv.d"
|
||||
]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ module arsd.webtemplate;
|
|||
|
||||
import arsd.script;
|
||||
import arsd.dom;
|
||||
import arsd.uri;
|
||||
|
||||
public import arsd.jsvar : var;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue