Merge pull request #35 from weiwest/master

add windows android start guide
This commit is contained in:
HALX99 2020-02-04 22:56:49 +08:00 committed by GitHub
commit 30e21d3b08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

View File

@ -87,3 +87,29 @@ _USRSTUDIOPDLL
!!!! future of future:
- [ ] Use sol2 for binding framework instead tolua++
- [ ] Use bgfx for multi renderer backend support
### 快速开始
#### windows
安装CMake要求3.6以上<br>
根据安装的 Visual Studio 版本,执行下面的命令,解决方案就生成在 build 目录下了。<br>
打开cpp-tests.sln编译运行。<br>
```
cd engine-v5\tests\cpp-tests
cmake -S .\ -B .\build -G “Visual Studio 14 2015 Win32”
or
cmake -S .\ -B .\build -G “Visual Studio 16 2019” -A Win32
```
#### android
安装 Android Studio (推荐3.5.3),打开 SDKManager安装下列工具。<br>
打开project目录在engine-v5\tests\cpp-tests\proj.android<br>
等待Gradle sync完成后Build APKs安装运行<br>
```
LLDB 推荐3.1
CMake 推荐 3.10.2
NDK 推荐 20.1
```