Update DevSetup.md [skip ci]

This commit is contained in:
Deal(一线灵) 2023-07-06 21:45:20 +08:00 committed by GitHub
parent 779362ad8e
commit c0c621af37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -34,13 +34,13 @@ Examples:
If you use latest commits after 6/29/2023 18:50, once you crate a new project, there is a build script `build.ps1` in your project root directory, If you use latest commits after 6/29/2023 18:50, once you crate a new project, there is a build script `build.ps1` in your project root directory,
then you can simply build your project for all platform targets, i.e. then you can simply build your project for all platform targets, i.e.
- win32: `pwsh .\build.ps1 -p win32 -a x64 -xc '--config','Debug'` can runs on Windows with vs2022 installed - win32: `pwsh .\build.ps1` can runs on Windows with vs2022 installed
- winuwp: `pwsh .\build.ps1 -p winuwp -a x64 -xc '--config','Debug'` can runs on Windows with vs2022 installed - winuwp: `pwsh .\build.ps1 -p winuwp` can runs on Windows with vs2022 installed
- linux: run the setup script `install-deps-linux.sh` once, then `pwsh .\build.ps1 -p linux -a x64 -xc '--config','Debug'` can runs on Linux with g++ installed - linux: `pwsh .\build.ps1` can runs on Linux with g++ installed
- osx: `pwsh .\build.ps1 -p osx -a x64 -xc '--config','Debug'` can runs on macOS with xcode13~14.2 installed - osx: `pwsh .\build.ps1 -p osx -a x64` can runs on macOS with xcode13~14.2 installed
- android: `pwsh .\build.ps1 -p android -a arm64` can runs on Windows,Linux,macOS and script will auto setup android sdk - android: `pwsh .\build.ps1 -p android -a arm64` can runs on Windows,Linux,macOS and script will auto setup android sdk
- ios: `pwsh .\build.ps1 -p ios -a x64 -xc '--config','Debug'` can runs on macOS with xcode13~14.2 installed - ios: `pwsh .\build.ps1 -p ios -a x64` can runs on macOS with xcode13~14.2 installed
- tvos: `pwsh .\build.ps1 -p tvos -a x64 -xc '--config','Debug'` can runs on macOS with xcode13~14.2 installed - tvos: `pwsh .\build.ps1 -p tvos -a x64` can runs on macOS with xcode13~14.2 installed
## Quick build engine for host targets? ## Quick build engine for host targets?