squawk/ui/CMakeLists.txt

39 lines
878 B
CMake
Raw 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
set(squawkUI_SRC
squawk.cpp
accounts.cpp
2019-03-30 20:13:13 +00:00
account.cpp
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
2019-04-09 15:04:08 +00:00
conversation.cpp
messageline.cpp
newcontact.cpp
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 Qt5::Widgets)
target_link_libraries(squawkUI Qt5::DBus)
2019-03-29 14:54:34 +00:00
# Install the executable
install(TARGETS squawkUI DESTINATION lib)