🐛 修复 windows 下生成 dll 库带 linux 前缀导致查找不到控件

This commit is contained in:
liangliang723 2023-04-08 19:32:35 +08:00
parent c59c07e756
commit 9f8a5f5646

View File

@ -38,6 +38,10 @@ set(RC_ICONS
favicon.ico
)
if(WIN32)
set(CMAKE_SHARED_LIBRARY_PREFIX "")
endif()
qt_add_resources(QT_RESOURCES ${RESOURCES})
add_executable(${PROJECT_NAME} ${SOURCES} ${HEADERS} ${QT_RESOURCES} ${RC_ICONS})