CMAKESYSROOT
CMAKESYSROOT is a CMake variable that specifies the system root directory. This variable is primarily used in cross-compilation scenarios where the target system's libraries, headers, and other build artifacts are located in a directory different from the host system's standard locations.
When CMake is configured to use a system root, it will prepend this path to all compiler
Setting CMAKESYSROOT is a common practice when building embedded systems or when targeting different architectures on
---