Skip to content

Commit

Permalink
tests multithreading
Browse files Browse the repository at this point in the history
  • Loading branch information
yuannan committed Oct 18, 2021
1 parent dbc4a81 commit 914cd92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fastfetch uses [`cmake`](https://cmake.org/) for building. The simplest steps to
mkdir -p build
cd build
cmake ..
make -j$(nproc)
cmake --build . -j$(nproc)
```

This will produce `build/fastfetch` and `build/flashfetch`, both standalone executables.
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
mkdir -p build/
cd build/
cmake ..
make -j$(nproc)
cmake --build . -j$(nproc)
./fastfetch "$@"
2 changes: 1 addition & 1 deletion tests/performance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ rm -rf tests/build/
mkdir -p tests/build/
cd tests/build/
cmake ../.. -DBUILD_TESTS=ON
cmake --build . --target fastfetch-test-performance
cmake --build . -j$(nproc) --target fastfetch-test-performance
./fastfetch-test-performance "$@"

0 comments on commit 914cd92

Please sign in to comment.