Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Magidovich <mgsergio@mapswithme.com>2017-08-28 16:10:24 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-10-02 15:15:20 +0300
commit498435dbc685f80209b1e2d801b0921ad8c4276b (patch)
treee62b4415c2b5131f1a0cd3ae20664a25a00deca6 /CMakeLists.txt
parentf6e442039b902cea9c57e52b0f66978477e714d4 (diff)
Add side panel with partner's segments.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 03a9e26807..27b5f3e54b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -145,6 +145,7 @@ if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5Xml REQUIRED)
find_package(Qt5Svg REQUIRED)
+ find_package(Qt5WebEngineWidgets REQUIRED)
endif()
endif()
@@ -273,6 +274,13 @@ function(link_qt5_network target)
)
endfunction()
+function(link_qt5_webengine target)
+ omim_link_libraries(
+ ${target}
+ ${Qt5WebEngineWidgets_LIBRARIES}
+ )
+endfunction()
+
function(add_clang_compile_options)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(${ARGV})