quote:
Is there a way to start/make a template c++ program that has these settings for the linker?
Yes, instead of starting the project using New workspace. Try creating a Win32 app, which i think is in the project list. Then select ''empty project'' to start. This will allow you to have all the right linker information switchs set for a win32 app. I think you need to add the libraries in each time. Otherwise you could try creating a header file that has pragma comments, to include the right libraries. Then all u need to do is include the header(after the others) i.e.:
.... Other headers ....// Library Include header#include "Libs.h" //header contains information to include libs.
i think this will work. Hope this helps
-----
Losec
-----