tests multithreading

This commit is contained in:
yuannan
2021-10-18 02:40:33 +01:00
parent dbc4a815c5
commit 914cd9219d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -2,5 +2,5 @@
mkdir -p build/
cd build/
cmake ..
make -j$(nproc)
cmake --build . -j$(nproc)
./fastfetch "$@"
+1 -1
View File
@@ -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 "$@"