File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,28 @@ const clr_modules = ["REnv.dll" "Rlapack.dll" "roxygenNet.dll" "Rserve.dll" "Rse
10
10
" devkit.dll" " graphics.dll" " igraph.dll" " MLkit.dll" " njl.dll"
11
11
" npy.dll" " nts.dll" " Parallel.dll" " RData.dll" ];
12
12
13
+ const index = list ();
14
+
13
15
for (dll_name in clr_modules ) {
16
+ let libs = [];
17
+
14
18
str(dll_name );
15
19
16
20
# generates the html help documents
17
21
for (pkg_namespace in package_utils :: parseDll(dll = `${app_dir}/${dll_name}` )) {
22
+ const libname = [pkg_namespace ]:: namespace ;
23
+
18
24
try({
19
25
Rdocuments(pkg_namespace ,
20
- outputdir = `${vignettes}/${basename(dll_name)}/${[pkg_namespace]::namespace }` ,
26
+ outputdir = `${vignettes}/${basename(dll_name)}/${libname }` ,
21
27
package = " R" );
28
+ libs = append(libs , libname );
22
29
});
23
30
}
31
+
32
+ index [[basename(dll_name )]] = libs ;
33
+
34
+ NULL ;
24
35
}
36
+
37
+ str(index );
You can’t perform that action at this time.
0 commit comments