在为RelWithDebInfo进行构建时,是否可以使用特定于Qt的调试版本?似乎使用的是DLL的发行版,因此我无法对其进行调试。我不确定如何指定使用调试DLL。所有这些都为target_link_libraries指定了“ Qt5 :: Widgets”。
project(testproject)
find_package(Qt5Widgets CONFIG REQUIRED)
set(helloworld_SRCS
mainwindow.ui
mainwindow.cpp
main.cpp
)
add_executable(helloworld ${helloworld_SRCS})
target_link_libraries(helloworld Qt5::Widgets)