mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-20 04:30:10 +01:00
See http://www.cmake.org for more informations. Currently only unix will be buildable because some win32 required files are still missing.
14 lines
204 B
CMake
14 lines
204 B
CMake
:: bus-test wrapper
|
|
@echo off
|
|
|
|
:: session bus address
|
|
set DBUS_STARTER_BUS=tcp:host=localhost,port=1234
|
|
|
|
if NOT "%1" == "" (
|
|
SET DATADIR=%1
|
|
) else (
|
|
SET DATADIR=test\data
|
|
)
|
|
|
|
bin\bus-test.exe test\data
|
|
|