date icon indicating copy to clipboard operation
date copied to clipboard

Naming DLL differently based on the CMake build Configuration

Open Milerius opened this issue 5 years ago • 0 comments

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()

Milerius avatar Jun 15 '20 19:06 Milerius