Skip to content

Instantly share code, notes, and snippets.

View DamirPorobic's full-sized avatar
😑
Busy

Damir Porobić DamirPorobic

😑
Busy
View GitHub Profile
@magthe
magthe / CMakeLists.txt
Last active February 5, 2024 18:30
Complete example of D-BUS client and server using Qt5 and CMake.
cmake_minimum_required(VERSION 3.5)
project(DBusTest)
find_package(Qt5 CONFIG REQUIRED Core DBus)
set(prog_SRCS my.test.Calculator.xml)
qt5_generate_dbus_interface(Calc.hh
my.test.Calculator.xml
OPTIONS -A
)