GuiLite/core/README.md
2017-12-06 21:43:47 +08:00

14 lines
454 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 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 Linuxx64 & 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`