在CMake中为RelWithDebInfo指定Qt调试DLL

时间:2018-12-06 00:56:56

标签: qt qt5

在为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)

0 个答案:

没有答案