CMake的新手,我很难理解如何使用生成器表达式。我试图使用add_custom_command
创建一个构建后命令来将Qt DLL复制到可执行目录。
在Qt5WidgetsConfig.cmake
中我可以看到它为Qt5 :: Widgets目标创建了不同的属性来引用DLL,具体取决于当前活动的配置。 IMPORTED_LOCATION_DEBUG
或IMPORTED_LOCATION_RELEASE
。我希望能够将$<CONFIG:Debug>
生成器表达式用作if()
中的条件,但这不起作用。
我的CMakeLists.txt:
# minimum version required for proper support of C++11 features in Qt
cmake_minimum_required(VERSION 3.1.0)
set(CMAKE_CONFIGURATION_TYPES Debug;Release)
# project name and version
project(TPBMon VERSION 0.0.0.1)
# Qt5 libs
find_package(Qt5Widgets REQUIRED)
# run Qt's MOC when needed
set(CMAKE_AUTOMOC ON)
add_executable(
tpbmon
src/main.cpp
src/mainwindow.hpp
src/mainwindow.cpp
)
target_link_libraries(tpbmon Qt5::Widgets)
set_target_properties(
tpbmon
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/bin
)
if(WIN32)
if($<CONFIG:Debug>)
get_target_property(WIDGETDLL Qt5::Widgets IMPORTED_LOCATION_DEBUG)
else($<CONFIG:Debug>)
get_target_property(WIDGETDLL Qt5::Widgets IMPORTED_LOCATION_RELEASE)
endif($<CONFIG:Debug>)
add_custom_command(
TARGET tpbmon POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${WIDGETDLL} $<TARGET_FILE_DIR:tpbmon>
)
endif(WIN32)
答案 0 :(得分:7)
通过修改add_custom_command
对
add_custom_command(
TARGET tpbmon POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
$<TARGET_FILE:Qt5::Widgets>
$<TARGET_FILE_DIR:tpbmon>
)
令人惊讶的是,在一夜好眠之后,新鲜的视角可以做到。 ;)
答案 1 :(得分:0)
您可以使用Qt二进制发行版中的windeployqt
程序。它将扫描您的二进制文件并收集所有使用过的Qt DLL,插件和QML模块。可以通过add_custom_command(TARGET target_name POST_BUILD ...)
签名将它包装在CMake中作为构建后事件。