mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
x86_64 is for simulation debug. It is just for working flow test. Change-Id: I2d1cb50e52a104e58f6eaf3b27fd9dcf41b9ada6 Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
7 lines
232 B
Bash
Executable file
7 lines
232 B
Bash
Executable file
#!/bin/bash
|
|
# Run this from within a bash shell
|
|
# x86_64 is for simulation do not enable RK platform
|
|
cmake -G "Unix Makefiles" \
|
|
-DCMAKE_BUILD_TYPE=debug \
|
|
-DCMAKE_RKPLATFORM_ENABLE=OFF \
|
|
../../../ && ccmake ../../../
|