Hello Citizens!
Well, I'm having trouble with _SECURE_SCL configurations.
I'm using Visual Studio 2012 and have a C++ project with SFML 2.0 and Assimp.
Assimp says that I should have these flags set, which I did:
_HAS_ITERATOR_DEBUGGING=0
_SECURE_SCL=0
Wich is great because I don't want this stuff getting my code slow. But then I have to recompile SFML with these flags, so KernelBase.dll stop yelling access violations exceptions. But I, already set these:
add_definitions( -D_SECURE_SCL=0 )
add_definitions( -D_HASITERATOR_DEBUGGING=0 )
In the CMakeLists.txt and verified their existence in the VS Solution, but the error persists. It start yelling when I create an window.
Could it be a problem in an SFML depedency? So I should recompile ALL the dependencies of ALL libraries that I use recursively?
Am I forgetting something?
I've read in an old thread that I could use #pragma detect_mismatch to pop some link errors when mismatch occurs, but I'm not sure where to put it.
Any help and insight is appreciated!
Cheers

Find content
Not Telling