squawk/ui/CMakeLists.txt

50 lines
1.1 KiB
CMake
Raw Permalink Normal View History

2019-03-29 14:54:34 +00:00
cmake_minimum_required(VERSION 3.0)
project(squawkUI)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
# Instruct CMake to create code from Qt designer ui files
set(CMAKE_AUTOUIC ON)
# Find the QtWidgets library
find_package(Qt5Widgets CONFIG REQUIRED)
find_package(Qt5DBus CONFIG REQUIRED)
2019-03-29 14:54:34 +00:00
add_subdirectory(widgets)
2019-03-29 14:54:34 +00:00
set(squawkUI_SRC
squawk.cpp
2019-03-30 20:13:13 +00:00
models/accounts.cpp
models/roster.cpp
2019-04-03 18:15:36 +00:00
models/item.cpp
models/account.cpp
2019-04-05 15:12:59 +00:00
models/contact.cpp
2019-04-07 14:02:41 +00:00
models/presence.cpp
models/group.cpp
models/room.cpp
models/abstractparticipant.cpp
models/participant.cpp
2020-04-16 20:23:02 +00:00
models/reference.cpp
utils/messageline.cpp
utils//message.cpp
utils/resizer.cpp
utils/image.cpp
utils/flowlayout.cpp
utils/badge.cpp
2019-10-30 13:47:21 +00:00
utils/progress.cpp
utils/comboboxdelegate.cpp
utils/dropshadoweffect.cpp
2019-03-29 14:54:34 +00:00
)
2021-07-07 13:45:08 +00:00
qt5_wrap_ui(squawkUI_SRC
squawk.ui
)
2019-03-29 14:54:34 +00:00
# Tell CMake to create the helloworld executable
add_library(squawkUI ${squawkUI_SRC})
# Use the Widgets module from Qt 5.
target_link_libraries(squawkUI squawkWidgets)
2019-03-29 14:54:34 +00:00
target_link_libraries(squawkUI Qt5::Widgets)
target_link_libraries(squawkUI Qt5::DBus)