Merge pull request #1877 from Margen67/typofix

setup.bat: Fix typos, add -j to build
This commit is contained in:
PatrickvL 2020-04-25 21:40:36 +02:00 committed by GitHub
commit 57a8dc6f3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
@echo off
REM CXbx-Reloaded setup script
REM Cxbx-Reloaded setup script
REM
REM Depends on git, cmake and Visual Studio being installed.
echo Pulling lastest version from git...
echo Pulling latest version from git...
REM git clone --recurse-submodules https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/
git pull --recurse-submodules
@ -21,6 +21,6 @@ REM cmake .. -G "Visual Studio 16 2019" -A Win32
cmake .. -A Win32
echo Building solution...
cmake --build .
cmake --build . -j %NUMBER_OF_PROCESSORS%
echo Done! Enjoy using Cxbx-Reloaded!