qt5base-lts/examples/dbus/chat/CMakeLists.txt
Leander Beernaert bf298499a0 Update public CMake macros' version
Update all public Qt macros to use qt6/QT6 instead of qt5/QT6.

Change-Id: Ib178f4fa21f37dfb8da7d4d8c097aa0e96c9d9f9
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2019-08-23 10:04:30 +00:00

45 lines
896 B
CMake

# Generated from chat.pro.
cmake_minimum_required(VERSION 3.14)
project(chat LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(INSTALL_EXAMPLEDIR "examples")
find_package(Qt6 COMPONENTS DBus)
find_package(Qt6 COMPONENTS Widgets)
# special case begin
set(chat_SRCS)
qt6_add_dbus_interface(chat_SRCS
org.example.chat.xml
chat_interface
)
qt6_add_dbus_adaptor(chat_SRCS
org.example.chat.xml
qobject.h
QObject
chat_adaptor
)
# special case end
add_qt_gui_executable(chat
chat.cpp chat.h
chatmainwindow.ui
chatsetnickname.ui
${chat_SRCS} # special case
)
target_link_libraries(chat PUBLIC
Qt::DBus
Qt::Widgets
)
install(TARGETS chat
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)