From 891d9f76b6cbed306fd55338ada95c73ee8edce0 Mon Sep 17 00:00:00 2001 From: Timofey Date: Mon, 19 Dec 2016 15:16:02 +0300 Subject: [PATCH] Skip compiling desktop app when making ios. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f26ffcc0dd..7734b203dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -185,4 +185,6 @@ add_subdirectory(partners_api) omim_add_test_subdirectory(qt_tstfrm) omim_add_test_subdirectory(3party/gmock) -add_subdirectory(qt) +if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID) + add_subdirectory(qt) +endif()