If I build the project with DEBUG mode it will generate an LLU.lib in directory install\lib. If I build the project with RELEASE mode it also will generate an LLU.lib in directory install\lib. In fact, due to renaming, the later generated LLU.lib files will overwrite the earlier generated ones. I currently renamed the LLU.lib generated in debug mode to LLUd.lib. And I change the LLU.lib in install\cmake\LLU\LLUTargets-debug.cmake into LLUd.lib. This way I can compile both the release .dll and the debug .dll now in visual studio. I think this is a good suggestion for the library.
If I build the project with DEBUG mode it will generate an
LLU.lib
in directory install\lib. If I build the project with RELEASE mode it also will generate anLLU.lib
in directory install\lib. In fact, due to renaming, the later generatedLLU.lib
files will overwrite the earlier generated ones. I currently renamed theLLU.lib
generated in debug mode toLLUd.lib
. And I change theLLU.lib
in install\cmake\LLU\LLUTargets-debug.cmake intoLLUd.lib
. This way I can compile both the release .dll and the debug .dll now in visual studio. I think this is a good suggestion for the library.