Visual 2012 C++ - the same static lib for debug an

2019-08-16 20:11发布

问题:

Is it possible to create on static library for release and debug project? Unfortunately I need to store some libs in git repository and I want to avoid storing to much binary code in repository. My idea was to create some universal lib for release and debug, but for now I meet problems related to: "mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0'".

Thanks for any suggestions.

Pawel