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?
- Unfortunately I can't use the "any platform" option which is default because of those not x64 compatible DLLs.
- I want to support real x64 and not running a 32 bit application on an x64 OS.