How do you add directx dll/libs to a visual c++.net project.
adding directx to visual C++.net
Collapse
This topic is closed.
X
X
-
TedTags: None -
Thomas Matthews
Re: adding directx to visual C++.net
Ted wrote:[color=blue]
> How do you add directx dll/libs to a visual c++.net project.[/color]
By reading the Visual C++ Compiler Manual. :-)
Dynaminc Link Libraries (a.k.a. DLLs) and Libraries (libs)
are not a part of the C++ language; they are a compiler or
implementation issue. Different compiles are allowed to
have different object, library and executable formats.
The best place for your answers is a Microsoft newsgroup.
Check the FAQ and welecome.txt links below.
--
Thomas Matthews
C++ newsgroup welcome message:
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.l earn.c-c++ faq:
Other sites:
http://www.josuttis.com -- C++ STL Library book
http://www.sgi.com/tech/stl -- Standard Template Library
-
Ted
Re: adding directx to visual C++.net
Ok, that might be true but I was able to find the information I
needed, and those with similar problems, in the properties window of
your project, not the solution, you'll an linker section where you are
able to add Additional dependencies to your project such as DLLs and
or LIBs.
Thanks for the help
Thomas Matthews <Thomas_Matthew sReallyHatesSpa m@sbcglobal.net > wrote in message news:<3F76C434. 40905@sbcglobal .net>...[color=blue]
> Ted wrote:[color=green]
> > How do you add directx dll/libs to a visual c++.net project.[/color]
>
> By reading the Visual C++ Compiler Manual. :-)
> Dynaminc Link Libraries (a.k.a. DLLs) and Libraries (libs)
> are not a part of the C++ language; they are a compiler or
> implementation issue. Different compiles are allowed to
> have different object, library and executable formats.
>
> The best place for your answers is a Microsoft newsgroup.
> Check the FAQ and welecome.txt links below.
>
> --
> Thomas Matthews
>
> C++ newsgroup welcome message:
> http://www.slack.net/~shiva/welcome.txt
> C++ Faq: http://www.parashift.com/c++-faq-lite
> C Faq: http://www.eskimo.com/~scs/c-faq/top.html
> alt.comp.lang.l earn.c-c++ faq:
> http://www.raos.demon.uk/acllc-c++/faq.html
> Other sites:
> http://www.josuttis.com -- C++ STL Library book
> http://www.sgi.com/tech/stl -- Standard Template Library[/color]
Comment
Comment