Home | History | Annotate | Download | only in cmake
      1 :: bus-test wrapper
      2 @echo off
      3 
      4 :: session bus address
      5 set DBUS_STARTER_BUS=tcp:host=localhost,port=1234
      6 
      7 if NOT "%1" == "" (
      8 	SET DATADIR=%1
      9 ) else (
     10 	SET DATADIR=test\data
     11 )
     12 
     13 bin\bus-test.exe test\data
     14 
     15