From: no_name on
Is it possible to tell linker what libs to link through the SOURCES file?
Whatever I do, there is no effect at all.

here is my sources file

TARGETNAME=VFilter
TARGETPATH=obj
TARGETTYPE=DRIVER

INCLUDES = %BUILD%\inc

LIBS = ???
Full path doesn't help, %SOME_ENV_VARIABLE% also doesn't help... Perhaps
instead of "LIBS" should be something else.

SOURCES=VFilter.c


Thank you


From: Gianluca Varenni on
TARGETLIBS=<yourlibfile>.lib

Have a nice day
GV

--
Gianluca Varenni, Windows DDK MVP

CACE Technologies
http://www.cacetech.com


"no_name" <senditon(a)microsoft.com> wrote in message
news:emDqPlhpIHA.4884(a)TK2MSFTNGP06.phx.gbl...
> Is it possible to tell linker what libs to link through the SOURCES file?
> Whatever I do, there is no effect at all.
>
> here is my sources file
>
> TARGETNAME=VFilter
> TARGETPATH=obj
> TARGETTYPE=DRIVER
>
> INCLUDES = %BUILD%\inc
>
> LIBS = ???
> Full path doesn't help, %SOME_ENV_VARIABLE% also doesn't help... Perhaps
> instead of "LIBS" should be something else.
>
> SOURCES=VFilter.c
>
>
> Thank you
>


From: no_name on

"Gianluca Varenni" <gianluca.varenni(a)community.nospam> wrote in message
news:OQlP%23$jpIHA.4620(a)TK2MSFTNGP06.phx.gbl...
> TARGETLIBS=<yourlibfile>.lib
>

Thank you!!