mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-10 00:57:24 +03:00
19 lines
408 B
Text
19 lines
408 B
Text
|
set(QBT_LINEEDIT_SOURCES
|
||
|
src/lineedit.cpp
|
||
|
)
|
||
|
|
||
|
set(QBT_LINEEDIT_HEADERS
|
||
|
src/lineedit.h
|
||
|
)
|
||
|
|
||
|
set(QBT_LINEEDIT_RESOURCES
|
||
|
resources/lineeditimages.qrc
|
||
|
)
|
||
|
|
||
|
add_library(qbt_lineedit STATIC ${QBT_LINEEDIT_SOURCES} ${QBT_LINEEDIT_HEADERS} ${QBT_LINEEDIT_RESOURCES})
|
||
|
if (QT4_FOUND)
|
||
|
target_link_libraries(qbt_lineedit Qt4::QtGui)
|
||
|
else (QT4_FOUND)
|
||
|
target_link_libraries(qbt_lineedit Qt5::Widgets)
|
||
|
endif (QT4_FOUND)
|