Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ For exact dependency versions used in the build, see [cmake/Dependencies.cmake](
mkdir -p _build && cd _build
cmake ../ -DCMLIB_DIR=</absolute/path/cmakelib>
make
cmake --install . [--prefix <custom path>] # sets up runtime library paths; running the binary directly from the build directory is not supported
```

## Run
Expand All @@ -57,6 +58,12 @@ make
./module-gateway-app --config-path=../resources/config/default.json
```

## Debug
Without the install step dynamic libraies are not found directly. This is not tested properly, but it is most probably necessary to pass LD_LIBRARY_PATH while running the executable. Tested only with release build without the install step.
```
LD_LIBRARY_PATH=../_tmp/cache/dir/EXTRACTED/BACPACK/AERON/DEBUG/lib:$LD_LIBRARY_PATH ./module-gateway-app
```

### Arguments

* Required arguments:
Expand Down