mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TRANSPORT="zeromq"
|
|
VERBOSE="DEBUG"
|
|
|
|
JSONCONFIGFILE="@CMAKE_BINARY_DIR@/bin/config/ex1-sampler-sink.json"
|
|
|
|
########################## start DEVICE
|
|
DEVICE="runConfigExample --transport $TRANSPORT --severity $VERBOSE"
|
|
DEVICE+=" --id sampler1 --mq-config $JSONCONFIGFILE"
|
|
@CMAKE_BINARY_DIR@/bin/$DEVICE
|