Skip to content

Commit

Permalink
update more make commands
Browse files Browse the repository at this point in the history
  • Loading branch information
goatshriek committed Sep 26, 2024
1 parent b14e670 commit b76f328
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,13 +320,13 @@ cmake -DGTEST_PATH=../gtest -DBENCHMARK_PATH=../benchmark ../stumpless

# in this build Google Test and Benchmark will be downloaded and built since
# the paths we provided don't have anything in them
make check
make bench
cmake --build . --target check
cmake --build . --target bench

# to build the libraries and put them in the path for future builds, we just
# execute these two targets:
make export-gtest
make export-benchmark
cmake --build . --target export-gtest
cmake --build . --target export-benchmark

# these list commands show that the folders are now populated!
ls ../gtest
Expand All @@ -349,8 +349,8 @@ cmake -DGTEST_PATH=../gtest -DBENCHMARK_PATH=../benchmark ../stumpless
# running the test suite or benchmark suite won't download the libraries this
# time - it will go straight to compiling the tests and linking them against
# the libraries in the PATH variables
make check
make bench
cmake --build . --target check
cmake --build . --target bench
```


Expand Down

0 comments on commit b76f328

Please sign in to comment.