forked from pyrite-dev/pmake
libdirs
This commit is contained in:
parent
e344b69e93
commit
7ce5bd3cf3
3 changed files with 36 additions and 6 deletions
|
|
@ -46,7 +46,11 @@ Watcom.link = function(target, files) {
|
|||
return "library \"" + x + "\"";
|
||||
}
|
||||
|
||||
return "wlink option quiet system nt name " + this.output(target) + " " + files.map(add_file).join(" ") + " " + pmake.libs(target, add_lib).map(add_library).join(" ");
|
||||
function add_libpath(x) {
|
||||
return "libpath \"" + x + "\"";
|
||||
}
|
||||
|
||||
return "wlink option quiet system nt name " + this.output(target) + " " + files.map(add_file).join(" ") + " " + pmake.libdirs(target).map(add_libpath).join(" ") + " " + pmake.libs(target, add_lib).map(add_library).join(" ");
|
||||
}
|
||||
|
||||
return "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue