I'm trying to follow the DJI's documentation of the PayloadSDK to understand better the workflow. But when I type the line " cmake -DCMAKE_BUILD_TYPE=Release .. ", on (https://developer.dji.com/document/c685f35c-5033-42ee-9dcc-e242ef19fd98), the build stops and shows an ERROR:
CMake Error at CmakeList.txt:32 (message): FATAL: Please confirm your platform.
Please could someone help me?
This error pops up when your system is neither x86_64 nor aarch64. Are you using a raspberry Pi? Cause you might have Armv7, which is aarch32.
if (USE_SYSTEM_ARCH MATCHES LINUX) add_definitions(-DSYSTEM_ARCH_LINUX) add_subdirectory(samples/sample_c/platform/linux/manifold2) add_subdirectory(samples/sample_c++/platform/linux/manifold2)
This is the code sequent i'm reffering to. You can view the whole thing here:
https://github.com/dji-sdk/Payload-SDK/blob/master/CMakeLists.txt