xref: /rockchip-linux_mpp/build/linux/x86_64/make-Makefiles.bash (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
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