I am using Visual Studio 2012.
I used multiple preprocessor directives like
#ifdef something #include<some_header.h> #else #include<other_header.h> #endif
I was wondering if it is possible to link a static library in a similar way:
#ifdef something
The question was from the topic of my previous question : I have two static libraries lib1.lib, lib2.lib (and not their code) without namespaces, with the same prototype functions, but with different implementations.
source share