I'm working with allegro library in Visual Studio C++. And every time I'm creating project I must go through following proccess.
- Right click your project under Solution Explorer on the right, then select Properties.
- Under Configuration Properties->C/C++->General, enter c:\allegro\include in Additional Include Directories.
- Under Configuration Properties->Linker->General, enter c:\allegro\lib in Additional Library Directories.
- Under Configuration Properties->Linker->Input, append allegro-5.0.x-monolith-md-debug.lib to Additional Dependencies.
- Under Configuration Properties->Debugging, enter PATH=c:\allegro\bin;%PATH% in Environment.
- Click Apply.
And similarly with Release mode.
I'm using VC for a week so I'm not aware with that sort of stuff and it is really complicated for me.
Is there a way to link this libraries automatically to every project.
Or maybe a better idea is to store this "linking settings" in some kind of build configuration that I can simply apply to solution or project.
Anything that making previously described step by step process shorten or unnecessary would be incredibly helpful.
Sorry for my english I'm not a native speaker.