I am trying to integrate GTest with CMake as seamlessly as possible. But the default build type for my test projects are /MDd
/MDd
You can define gtest_force_shared_crt to ON before including gtest to achieve this. You can either do this via the command line:
gtest_force_shared_crt
ON
cmake . -Dgtest_force_shared_crt=ON
or in your CMakeLists.txt:
CMakeLists.txt
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)