| re: Creating a custom project in VC++ .NET 2003
5...@web.de wrote:[color=blue]
> Hi -
>
> I program in C++ but I'm not good with VC++ (yet). I will like to
> create a custom project for which a specific template or wizard does
> not exist.
>
> Because the program is a console application, I started out with the
> Win32 Console Project template. Having done that, the problem is that
> my application uses a custom header files and libraries (see code
> below) that VC++ does not know about. My question therefore is how do I
> configure the project to find these header files and libaries?
>
> Thanks
>
>
> - Olumide
>
>
>
> //////////////// code /////////////////////
>
> #include "stdafx.h"
> #include <Matrix.h> // <- Header file
>
>
> int main(int argc, char* argv[])
> {
> Matrix m; // <- Class defined by library
> return 0;
> }[/color]
This newsgroup is concerned with standard C++ only. You should post to
comp.os.ms-windows.programmer.win32
microsoft.public.vc.language
or the like.
Cheers! --M |