mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-15 09:10:07 +00:00
19 lines
408 B
CMake
19 lines
408 B
CMake
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)
|