Unverified Commit e5425fb7 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

Remove references to old ADAFS_DEPS_INSTALL var

ADAFS_DEPS_INSTALL variable is deprecated and not used anymore.
parent a0f38101
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
find_library(Snappy_LIBRARY
        NAMES snappy
        HINTS ${ADAFS_DEPS_INSTALL}
)

find_path(Snappy_INCLUDE_DIR
    NAMES snappy.h
    HINTS ${ADAFS_DEPS_INSTALL}
)

set(Snappy_LIBRARIES ${Snappy_LIBRARY})
+1 −3
Original line number Diff line number Diff line
@@ -97,11 +97,9 @@ You need to decide what Mercury NA plugin you want to use. The following NA plug
 - `cci+verbs` for using the cci plugin with Infiniband verbs
 - `bmi+tcp` for using the bmi plugin with the tcp protocol 

In addition you can add a specific directory where all dependencies are located, i.e., headers and libraries. This can
be done by using `-DADAFS_DEPS_INSTALL=<path>`. If the variable is not set this path points to `/usr/local`.
```bash
mkdir build && cd build
cmake -DADAFS_DEPS_INSTALL=<path> -DCMAKE_BUILD_TYPE={Release, Debug}} ..
cmake -DCMAKE_BUILD_TYPE=Release ..
make
```