From 9bd548aae2c99c761630b8accdd387d1ab72cbdf Mon Sep 17 00:00:00 2001 From: xpamych Date: Sat, 29 Apr 2023 14:52:39 +0300 Subject: [PATCH] make -j$(nproc) --- nlohmann-json/lure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nlohmann-json/lure.sh b/nlohmann-json/lure.sh index 46fb6ea..8e8d447 100644 --- a/nlohmann-json/lure.sh +++ b/nlohmann-json/lure.sh @@ -20,7 +20,7 @@ build() { mkdir build cd ./build cmake ../json -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF - make + make -j$(nproc) }