提交 a9426cbd 编写于 作者: C chenjianping

build.bat support input -j value

上级 58b013c3
......@@ -20,7 +20,11 @@ IF NOT %errorlevel% == 0 (
goto run_fail
)
cmake --build . --target all -- -j6
IF "%1%" == "" (
cmake --build . --target all -- -j6
) ELSE (
cmake --build . --target all -- -j%1%
)
IF NOT %errorlevel% == 0 (
goto run_fail
)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册