mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-01-15 17:02:52 +08:00
14 lines
454 B
Markdown
14 lines
454 B
Markdown
## How to build core libary for Windows?
|
||
depdency: Windows 10, visul stdio 2015/2017
|
||
- Open "core.sln" by Visual studio 2017
|
||
- Click `build`
|
||
|
||
## How to build core libary for Linux(x64 & arm)?
|
||
- `cmake .`
|
||
- `make`
|
||
|
||
## How to build core libary for Android?
|
||
- `sudo apt-get install gcc-arm-linux-androideabi`
|
||
- `cmake cmake -D CMAKE_C_COMPILER="/usr/bin/arm-linux-androideabi-gcc" -D CMAKE_CXX_COMPILER="/usr/bin/arm-linux-androideabi-g++" .`
|
||
- `make`
|