зеркало из https://github.com/Azure/azure-umqtt-c.git
23 строки
1021 B
Bash
23 строки
1021 B
Bash
|
#!/bin/bash
|
||
|
# assume directory is root of downloaded repo
|
||
|
mkdir cmake
|
||
|
cd cmake
|
||
|
ls -al
|
||
|
|
||
|
# Create a cmake toolchain file on the fly
|
||
|
echo "SET(CMAKE_SYSTEM_NAME Linux) # this one is important" > toolchain.cmake
|
||
|
echo "SET(CMAKE_SYSTEM_VERSION 1) # this one not so much" >> toolchain.cmake
|
||
|
|
||
|
echo "SET(CMAKE_C_COMPILER ${TOOLCHAIN_EXES}/${TOOLCHAIN_NAME}-gcc)" >> toolchain.cmake
|
||
|
echo "SET(CMAKE_CXX_COMPILER ${TOOLCHAIN_EXES}/${TOOLCHAIN_NAME}-g++)" >> toolchain.cmake
|
||
|
echo "SET(CMAKE_FIND_ROOT_PATH ${TOOLCHAIN_SYSROOT})" >> toolchain.cmake
|
||
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)" >> toolchain.cmake
|
||
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)" >> toolchain.cmake
|
||
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)" >> toolchain.cmake
|
||
|
ls -al
|
||
|
|
||
|
# Build the SDK. This will use the OpenSSL, cURL and uuid binaries that we built before
|
||
|
cmake -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake -Duse_prov_client=OFF -DCMAKE_INSTALL_PREFIX=${TOOLCHAIN_PREFIX} -Drun_e2e_tests=ON -Drun_unittests=ON ..
|
||
|
make -j 2
|
||
|
ls -al
|