Example.DDS: Fix env script for macOS

- For macOS append Boost_LIBRARY_DIRS to DYLD_LIBRARY_PATH and export DYLD_LIBRARY_PATH in the fairmq-ex-dds-env.sh
- Update CONTRIBUTORS list
This commit is contained in:
Andrey Lebedev
2020-01-31 12:33:51 +01:00
committed by Dennis Klein
parent 19ab8bba3b
commit 66acde2a69
4 changed files with 9 additions and 2 deletions

View File

@@ -9,3 +9,8 @@
################################################################################
export PATH=@BIN_DIR@:$PATH
OS=$(uname -s 2>&1)
if [ "$OS" == "Darwin" ]; then
export DYLD_LIBRARY_PATH=@LIB_DIR@:$DYLD_LIBRARY_PATH
fi