mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-04-24 18:04:49 +08:00
.. | ||
core_include | ||
src | ||
CMakeLists.txt | ||
core.sln | ||
core.vcxproj | ||
core.vcxproj.filters | ||
README.md |
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