You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
440 B
11 lines
440 B
cd ${PROJECT_PATH}/buildpc
|
|
|
|
wget -c "192.168.1.2:8021/sdk_firefly_rk3328_v2.5.1/buildtools/cmake-3.13.0-Linux-x86_64.tar.gz"
|
|
rm -rf cmake-3.13.0-Linux-x86_64
|
|
tar -xvf cmake-3.13.0-Linux-x86_64.tar.gz
|
|
mv cmake-3.13.0-Linux-x86_64 cmake
|
|
CMAKE_BIN=${PROJECT_PATH}/buildpc/cmake/bin/cmake
|
|
|
|
# 构造buildpc/build.sh
|
|
echo "${CMAKE_BIN} ../ -DBUILD_FOR_TEST_ON_PC=true " >${PROJECT_PATH}/buildpc/build.sh
|
|
chmod +x ${PROJECT_PATH}/buildpc/build.sh
|