diff options
author | Frust, Tobias (FWCC) - 111645 <t.frust@hzdr.de> | 2017-11-03 07:44:47 +0100 |
---|---|---|
committer | Frust, Tobias (FWCC) - 111645 <t.frust@hzdr.de> | 2017-11-03 07:44:47 +0100 |
commit | 1f6a370a7e177265eeffc971dbe4934ebf62d02b (patch) | |
tree | 5f5373663e5355f48520553b2e5bb932852be73c /README.md | |
parent | a38a5f1b646cdc992c3b602330a41036bc9bf7b1 (diff) | |
download | ods-1f6a370a7e177265eeffc971dbe4934ebf62d02b.tar.gz ods-1f6a370a7e177265eeffc971dbe4934ebf62d02b.tar.bz2 ods-1f6a370a7e177265eeffc971dbe4934ebf62d02b.tar.xz ods-1f6a370a7e177265eeffc971dbe4934ebf62d02b.zip |
add build instructions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -1,2 +1,33 @@ # OnlineDetectorSimulator This little tool will simulate the online capabilities of the new detector. Therefore, a dataset has been created which offers the same structure as the data from the new detector. The software sends out the packages via UDP. + +## Build instructions + +1. Dependencies: + + - Boost >= 1.58.0 + - libconfig + - cmake + - A C++11 compiler like gcc + + On debian-based systems install using the given commands: + + `$ sudo apt-get install libboost-all-dev libconfig++-dev` + +2. Clone the repository: + + `$ git clone git@github.com:HZDR-FWDF/OnlineDetectorSimulator.git && cd OnlineDetectorSimulator` + +3. Run cmake: + + ```bash + # Create build directory + $ mkdir build && cd build + $ cmake -DCMAKE_BUILD_TYPE=Release ../src/. + ``` + +4. Build the software + + `$ make` + +5. In the `bin` directory there will be two executables (`onlineDetectorSimulatorClient`, `onlineDetectorSimulatorServer`). |