26 lines
564 B
Bash
Executable File
26 lines
564 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR=$(cd $(dirname ${BASH_SOURCE[0]}); pwd)
|
|
SAMPLES_DIR=${SCRIPT_DIR}/..
|
|
|
|
# The following options require configuration
|
|
TOOLCHAIN_PATH=${SAMPLES_DIR}/../toolchains/toolchain_linux.cmake
|
|
LIBRGA_PATH=${SAMPLES_DIR}/../build/build_linux/install/lib
|
|
BUILD_DIR=build/build_linux
|
|
BUILD_TYPE=Release
|
|
|
|
rm -rf $BUILD_DIR
|
|
mkdir -p $BUILD_DIR
|
|
pushd $BUILD_DIR
|
|
|
|
cmake ../.. \
|
|
-DLIBRGA_FILE_LIB=${LIBRGA_PATH} \
|
|
-DBUILD_TOOLCHAINS_PATH=${TOOLCHAIN_PATH} \
|
|
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
|
|
-DCMAKE_INSTALL_PREFIX=install \
|
|
|
|
make -j8
|
|
make install
|
|
|
|
popd
|