xref: /OK3568_Linux_fs/external/mpp/build/linux/x86_64/make-Makefiles.bash (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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