|
Prev: Compiler error in Storport virtual miniport driver due to repeated definition
Next: Custom property interface for AVStream driver
From: no_name on 24 Apr 2008 10:41 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 24 Apr 2008 15:18 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 25 Apr 2008 05:14
"Gianluca Varenni" <gianluca.varenni(a)community.nospam> wrote in message news:OQlP%23$jpIHA.4620(a)TK2MSFTNGP06.phx.gbl... > TARGETLIBS=<yourlibfile>.lib > Thank you!! |