views:

237

answers:

2

I'd like to make a x86 and x64 version of my application because some of the libraries I'm using have differences for x86 and x64 (e.g. SQLite). I made a new configuration for release builds that has as target operating system "x64".

Is there a way to define different DLLs for the configuration e.g. use SQLite.dll for x86 release and SQLite64.dll for x64 release?

  1. Unfortunately I can't use the "any platform" option which is default because of those not x64 compatible DLLs.
  2. I want to support real x64 and not running a 32 bit application on an x64 OS.
+3  A: 

You can add conditions to the dll references in the project file but you cannot do it using Visual Studio - you will have to hand-edit the project files. See this for how to do it.

What you need to do is to include a reference to the 32-bit dll only in the 32-bit build configuration, and a reference to the 64-bit dll in the 64-bit build configuration.

adrianbanks
The above is correct. You can manually edit the project file and add the Condition attributes.
emddudley
Wow, didn't even know that I was looking for an answer to this question, but that rocks. Would I be correct in thinking that in this circumstance, the condition should be on $(Platform), since that is independent of debug/release?
Peter LaComb Jr.
@Peter: Yes, you need to add something like `Condition="$(Platform) == 'x64'"` to the relevant node in the project file.
adrianbanks
something like Condition="$(Platform) == 'x64'"? is that the correct syntax?
Kai
shall I better do set the conditon by build configuration?
Kai
@Kai: That syntax looks correct. You need to set it based on what it is that needs to be different. If the reference is the thing that differs between x86 and x64, add both dlls as references, then edit the project file and put `Condition="$(Platform) == 'x86'"` in the reference node of the x86 dll and `Condition="$(Platform) == 'x64'"` in the reference node of the x64 dll.
adrianbanks
A: 

Which VS version? Which language are you developing in? If native (=not managed) C++, practically all settings, including used libraries can be set differently for each configuration. In the top of the project properties dialog, just choose which configuration's settings would you like to modify.

shojtsy
vs 2008, c# .net 3.5
Kai