date
date copied to clipboard
Naming DLL differently based on the CMake build Configuration
There is my fix: https://github.com/KomodoPlatform/vcpkg/pull/1/files
Basically add: set(CMAKE_DEBUG_POSTFIX d) into your CMakeLists.txt will solve the problem also
This was resulting into picking the wrong debug/release DLL library by vcpkg and qtdeploywindows
Edit (this is related only to windows):
if (WIN32)
set(CMAKE_DEBUG_POSTFIX d)
endif()