<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Juan Jose Garcia-Ripoll wrote:
<blockquote
 cite="mid:c159f9ab0808051311q73b9321cwad8b3cc32f8db5a9@mail.gmail.com"
 type="cite">
  <pre wrap="">On Tue, Aug 5, 2008 at 10:05 PM, Kamil Shakirov <a class="moz-txt-link-rfc2396E" href="mailto:kamils80@gmail.com"><kamils80@gmail.com></a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">You need to tell msvc compiler where to find the ecl.lib file. Set your
environment before you start ECL as: set LIB=/path/to/your/ecl
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Is there an appropriate compiler option for MSVC to tell the path? It
would not be difficult to change the compiler invocation to pass that
information.

Juanjo
  </pre>
</blockquote>
<br>
from MSDN:<br>
<br>
Use the /LIBPATH option to override the environment library path. The
linker will first search in the path specified by this option, and then
search in the path specified in the LIB environment variable. You can
specify only one directory for each /LIBPATH option you enter. If you
want to specify more than one directory, you must specify multiple
/LIBPATH options. The linker will then search the specified directories
in order.<br>
<br>
cl /link /libpath:/path/to/ecl ecl.lib ...<br>
<br>
</body>
</html>