Skip to content
This repository was archived by the owner on Apr 6, 2019. It is now read-only.

Commit 9597a3b

Browse files
authored
update contributing.md - remove reference to install_deps (#90)
1 parent 2cd18b5 commit 9597a3b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ git checkout -b my_new_branch
99

1010
## 4. Build the entire library
1111
```bash
12-
# Install the development dependencies (GoogleTest)
13-
./install_deps.sh
14-
# Build the entire library as well as the tests
15-
mkdir build
16-
cd build
17-
cmake .. -DBUILD_TESTS=true -DBUILD_EXAMPLES=true -DLOGGING_ENABLED=1
12+
# Get tacopie submodule
13+
git submodule init && git submodule update
14+
# Create a build directory and move into it
15+
mkdir build && cd build
16+
# Generate the Makefile using CMake
17+
cmake .. -DCMAKE_BUILD_TYPE=Release
18+
# Build the library
1819
make
1920
# Run tests and examples
2021
./bin/cpp_redis_tests

0 commit comments

Comments
 (0)