diff --git a/lists.json b/lists.json index 0386b09..6e13b4a 100644 --- a/lists.json +++ b/lists.json @@ -9,13 +9,14 @@ "path": "https://github.com/norayr/lists", "tag" : "0.1" }, + "Dependencies": + { + "strutils": "0.1" + }, "Build": { - "voc -s": "src/lDefs.Mod", - "voc -s": "src/strutils.Mod", "voc -s": "src/List.Mod", "voc -s": "src/StringList.Mod", - "voc -m": "tst/TestList.Mod", - "voc -m": "tst/TestStrutils.Mod" + "voc -m": "test/TestList.Mod", } } diff --git a/strutils.json b/strutils.json new file mode 100644 index 0000000..c3feb8e --- /dev/null +++ b/strutils.json @@ -0,0 +1,18 @@ +{ + "Package": "strutils", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/strutils", + "tag" : "0.1" + }, + "Build": + { + "voc -s": "src/strTypes.Mod", + "voc -s": "src/strUtils.Mod", + "voc -m": "test/testStrUtils.Mod" + } +}