I am trying to integrate GTest with CMake as much as possible. But the default build type for my test projects is /MDd , and the default GTest is /MTd . I manually modify the properties of the GTest project to emit debug DLLs.
But every time I make changes to my CMakeLists.txt , GTest defaults to /MTd . How to stop it?
visual-c ++ cmake googletest
Hindol
source share