mirror of
https://gitee.com/houstudio/Cdroid.git
synced 2024-12-02 04:07:42 +08:00
18 lines
300 B
Bash
18 lines
300 B
Bash
|
if [ $# -gt 0 ]
|
||
|
then
|
||
|
mkdir -p out-ssd202r
|
||
|
pushd out-ssd202r
|
||
|
TYPE=Release
|
||
|
else
|
||
|
mkdir -p out-ssd202
|
||
|
pushd out-ssd202
|
||
|
TYPE=Debug
|
||
|
fi
|
||
|
|
||
|
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/ssd202-mtitoolchain.cmake \
|
||
|
-DCMAKE_INSTALL_PREFIX=./ \
|
||
|
-DCDROID_CHIPSET="sigma" \
|
||
|
-DCMAKE_BUILD_TYPE=${TYPE} \
|
||
|
..
|
||
|
popd
|