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)
|
2019-06-18 15:08:03 +00:00
|
|
|
find_package(Qt5DBus CONFIG REQUIRED)
|
2019-03-29 14:54:34 +00:00
|
|
|
|
2019-11-02 20:50:25 +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
|
2019-03-31 21:05:09 +00:00
|
|
|
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
|
2019-06-22 20:37:22 +00:00
|
|
|
models/group.cpp
|
2019-07-11 08:51:52 +00:00
|
|
|
models/room.cpp
|
2019-09-01 19:46:12 +00:00
|
|
|
models/abstractparticipant.cpp
|
2019-09-02 11:17:28 +00:00
|
|
|
models/participant.cpp
|
2020-04-16 20:23:02 +00:00
|
|
|
models/reference.cpp
|
2019-09-19 14:31:27 +00:00
|
|
|
utils/messageline.cpp
|
|
|
|
utils//message.cpp
|
2019-09-17 22:05:32 +00:00
|
|
|
utils/resizer.cpp
|
|
|
|
utils/image.cpp
|
2019-09-19 14:31:27 +00:00
|
|
|
utils/flowlayout.cpp
|
|
|
|
utils/badge.cpp
|
2019-10-30 13:47:21 +00:00
|
|
|
utils/progress.cpp
|
2019-11-02 20:50:25 +00:00
|
|
|
utils/comboboxdelegate.cpp
|
2020-03-30 21:17:10 +00:00
|
|
|
utils/dropshadoweffect.cpp
|
2019-03-29 14:54:34 +00:00
|
|
|
)
|
|
|
|
|
2021-10-05 04:49:06 +00:00
|
|
|
# Add squawk.ui to squawkUI_SRC so that the .ui files are displayed in Qt Creator
|
|
|
|
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.
|
2019-11-02 20:50:25 +00:00
|
|
|
target_link_libraries(squawkUI squawkWidgets)
|
2019-03-29 14:54:34 +00:00
|
|
|
target_link_libraries(squawkUI Qt5::Widgets)
|
2019-06-18 15:08:03 +00:00
|
|
|
target_link_libraries(squawkUI Qt5::DBus)
|