allgaeutobias
Programmer
Is it possible with Borland Developer Studio 2006 to specify the output file name for libs?
The intension is to use different file names for debug and release builds.
So I could use something like this in the code:
The intension is to use different file names for debug and release builds.
So I could use something like this in the code:
Code:
#ifdef _DEBUG
#pragma comment(lib, "xy_d.lib")
#else
#pragma comment(lib, "xy.lib")
#endif