mirror of https://github.com/axmolengine/axmol.git
add windows android start guide
This commit is contained in:
parent
a95a49713a
commit
6e4f1fb65e
26
README.md
26
README.md
|
@ -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
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue