1#!/bin/bash 2# Run this from within a bash shell 3# x86_64 is for simulation do not enable RK platform 4 5set +e 6 7cmake -G "Unix Makefiles" \ 8 -DCMAKE_BUILD_TYPE=debug \ 9 -DRKPLATFORM=OFF \ 10 ../../../ 11 12cmake --build . -j 13