android: configure waf with bundled deps to not look for system libs, as Android doesn't have any

This commit is contained in:
Alibek Omarov 2024-12-02 20:58:58 +03:00
parent 6247bbc629
commit fd5e3fbbb9

View file

@ -38,7 +38,7 @@ execute_process(
AR=${CMAKE_AR} STRIP=${CMAKE_STRIP}
${PYTHON_EXECUTABLE} waf configure -T ${BUILD_TYPE} ${WAF_EXTRA_ARGS} cmake
--check-c-compiler=${C_COMPILER_ID} --check-cxx-compiler=${CXX_COMPILER_ID}
-s "${ENGINE_SOURCE_DIR}/SDL" --skip-sdl2-sanity-check
-s "${ENGINE_SOURCE_DIR}/SDL" --skip-sdl2-sanity-check --enable-bundled-deps
WORKING_DIRECTORY "${ENGINE_SOURCE_DIR}"
)