From e19e63930d368b0b78886f5f3ae965dd3dbba8fe Mon Sep 17 00:00:00 2001 From: x7z4w Date: Sun, 23 Nov 2025 16:41:52 +0100 Subject: [PATCH] [cmake] Fix build errors Signed-off-by: x7z4w --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1791f75e..2389d8528 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -222,10 +222,8 @@ if (PLATFORM_DESKTOP AND NOT WITH_SYSTEM_PROVIDED_3PARTY) include_directories("${PROJECT_BINARY_DIR}/3party/gflags/include") endif() -# Android fails to find boost in many cases, this fixes it. -if (PLATFORM_ANDROID) - include_directories("${OMIM_ROOT}/3party/boost") -endif() +# Fix for #include +include_directories("${OMIM_ROOT}/3party/boost") # Used in qt/ and shaders/ find_package(Python3 REQUIRED COMPONENTS Interpreter)