dependency tree gets populated.

This commit is contained in:
Norayr Chilingarian 2020-06-09 17:57:59 +04:00
parent 289c154f46
commit d8a2a9ddac
19 changed files with 229 additions and 707 deletions

11
src/vpkInstaller.Mod Normal file
View file

@ -0,0 +1,11 @@
MODULE vpkInstaller;
IMPORT StringList, vpkResolver;
PROCEDURE install*(VAR unit: ARRAY OF CHAR);
BEGIN
vpkResolver.resolve(unit);
END install;
END vpkInstaller.