mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
tests multithreading
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
mkdir -p build/
|
||||
cd build/
|
||||
cmake ..
|
||||
make -j$(nproc)
|
||||
cmake --build . -j$(nproc)
|
||||
./fastfetch "$@"
|
||||
|
||||
@@ -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 "$@"
|
||||
|
||||
Reference in New Issue
Block a user