2019-03-18 18:26:24 +00:00
|
|
|
# Generated from chat.pro.
|
|
|
|
|
2021-08-16 16:14:46 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-06-04 15:08:47 +00:00
|
|
|
project(chat LANGUAGES CXX)
|
2019-03-18 18:26:24 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/dbus/chat")
|
2019-06-04 15:08:47 +00:00
|
|
|
|
2021-12-02 07:54:27 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core DBus Gui Widgets)
|
2019-06-04 15:08:47 +00:00
|
|
|
|
|
|
|
# special case begin
|
|
|
|
set(chat_SRCS)
|
2019-08-23 09:39:30 +00:00
|
|
|
qt6_add_dbus_interface(chat_SRCS
|
2019-06-04 15:08:47 +00:00
|
|
|
org.example.chat.xml
|
|
|
|
chat_interface
|
|
|
|
)
|
2019-08-23 09:39:30 +00:00
|
|
|
qt6_add_dbus_adaptor(chat_SRCS
|
2019-06-04 15:08:47 +00:00
|
|
|
org.example.chat.xml
|
|
|
|
qobject.h
|
|
|
|
QObject
|
|
|
|
chat_adaptor
|
|
|
|
)
|
|
|
|
# special case end
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(chat
|
2019-06-04 15:08:47 +00:00
|
|
|
chat.cpp chat.h
|
|
|
|
chatmainwindow.ui
|
|
|
|
chatsetnickname.ui
|
|
|
|
${chat_SRCS} # special case
|
|
|
|
)
|
2020-10-26 15:22:32 +00:00
|
|
|
set_target_properties(chat PROPERTIES
|
|
|
|
WIN32_EXECUTABLE TRUE
|
|
|
|
MACOSX_BUNDLE TRUE
|
|
|
|
)
|
2019-06-04 15:08:47 +00:00
|
|
|
target_link_libraries(chat PUBLIC
|
2020-02-04 07:15:50 +00:00
|
|
|
Qt::Core
|
2019-06-04 15:08:47 +00:00
|
|
|
Qt::DBus
|
2020-02-04 07:15:50 +00:00
|
|
|
Qt::Gui
|
2019-06-04 15:08:47 +00:00
|
|
|
Qt::Widgets
|
|
|
|
)
|
2020-02-04 07:15:50 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
install(TARGETS chat
|
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-12 08:21:40 +00:00
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-03-18 18:26:24 +00:00
|
|
|
)
|