Skip to content

Commit

Permalink
fix(cpp-client): Update README.md to make Linux and Windows instructi…
Browse files Browse the repository at this point in the history
…ons more consistent (deephaven#5861)
  • Loading branch information
jcferretti authored Jul 29, 2024
1 parent b92362d commit 521689f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cpp-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,14 @@ connect a server when you want to run them.
```
source $DHCPP/env.sh
cd $DHSRC/deephaven-core/cpp-client/deephaven/
mkdir build && cd build
cmake \
cmake -S . -B build \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_INSTALL_PREFIX=${DHCPP} \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DBUILD_SHARED_LIBS=ON \
.. \
&& \
make -j$NCPUS install
VERBOSE=1 cmake --build build --target install -- -j$NCPUS
```

If you need `make` to generate detailed output of the commands it is running
Expand Down

0 comments on commit 521689f

Please sign in to comment.