Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BDS2006: How to specify lib output file name?

Status
Not open for further replies.

allgaeutobias

Programmer
Joined
Jul 24, 2007
Messages
1
Location
DE
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:

Code:
#ifdef _DEBUG
  #pragma comment(lib, "xy_d.lib")
#else
  #pragma comment(lib, "xy.lib")
#endif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top