From affcfd4fe6337e363cfc0a1496c5e174751e6b83 Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Mon, 16 Mar 2026 14:23:19 +0300 Subject: [PATCH] - fix subprojects build locations --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c5c2a83e..4f7662f0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -62,7 +62,7 @@ if (CMAKE_SYSTEM MATCHES "Android") message("Adding the Oboe library") set (OBOE_DIR libs/oboe) - add_subdirectory (${OBOE_DIR} ./oboe) + add_subdirectory (${OBOE_DIR} build_oboe) include_directories (${OBOE_DIR}/include) set (DEFINES ${DEFINES} -DTARGET_ANDROID -DHAVE_NETINET_IN_H) set (TARGET_ANDROID ON)