Qt 6.6.0 OpcUA Debug
Unsolved
General and Desktop
-
Hi!
I am trying to compile the QtOpcUa modul with Qt6.6.0 on Windows 10 with MSVC and the Release build works just fine, but the Debug build stops at configure CMake with the error that there is no Debug version.
And I have found that the QtSetup.cmake in 6.6.0\msvc2019_64\lib\cmake\Qt6\ changed a lot and
in the line 58 theif("${CMAKE_BUILD_TYPE}" STREQUAL "${CMAKE_BUILD_TYPE_INIT}"
should be
if(NOT "${CMAKE_BUILD_TYPE}" STREQUAL "${CMAKE_BUILD_TYPE_INIT}"
But I do not have enough experience in CMake.
Can somebody confirm that I am correct ?Thank you!
p.s.:
With the added NOT it builds fine.