mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-07 10:00:55 +08:00

Change Android and Linux branches to use RKPLATFORM macro. RKPLATFORM is shorter and it is not a cmake variable. Change-Id: I09a6fe72e7dacedbb4b2b8e1a66b6f7ca625f019 Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
8 lines
219 B
Bash
Executable File
8 lines
219 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 \
|
|
-DRKPLATFORM=OFF \
|
|
../../../ && ccmake ../../../
|