I have to create a development toolkit. We have to build some series of
applications (for Wm5, WM6.1 based HH computers) which are based over some
base classes (these classes contains threads, threads synchronization,
messages etc). These “base” files are same for all applications and need to
be included while developing each application. So instead of adding these
“base” .h/.cpp & .lib files for each application development, better create a
development toolkit. Installation path for .lib/.h files will be known by
visual studio (2005). So:
1. What are the ways I can create a development toolkit? (I have all .h &
.lib files ready. These files has to be saved at user specified location
while installation.)
2. How can I add my customized path into Build system path as “C:\Program
Files\Microsoft Visual Studio 8\VC\crt\src\;C:\Program Files\Microsoft Visual
Studio 8\VC\atlmfc\src\mfc\”. Can it be done by running any .bat file at the
time of installation of toolkit?
Please help me if you know anything regarding the same.
Thanks
Paul T.
With that said, I think that the solution is probably fairly simple. You
have a lib and inc folder that you need VS to be aware of. The solution is
to add the path to the general path for the SDK(s) that you are building
against. These can be set using the Tools\Options dialog. Granted, you
probably don't what using the dialog as your solution, but that should get
you started on this. The paths are probably saved in the registry.
--
Bruce Eitman (eMVP)
Senior Engineer
Bruce.Eitman AT Eurotech DOT com
My BLOG http://geekswithblogs.net/bruceeitman
Eurotech Inc.
www.Eurotech.com
"Rahul P. Shukla" <RahulP...@discussions.microsoft.com> wrote in message
news:A6AF7E6D-3D64-4C2D...@microsoft.com...