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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2019-02-28 18:40:05 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2019-03-01 10:45:24 +0300
commit3c891bfd9fc64f68ce3b899bf1ca236ea541f57a (patch)
treeb3f4972329f506350560f2c5bff6a17f65969df4 /storage
parent9688c6de68a33f43136b1145dc2ff01d205edac0 (diff)
[vulkan] Fixed Linux compilation
Diffstat (limited to 'storage')
-rw-r--r--storage/storage_integration_tests/CMakeLists.txt7
-rw-r--r--storage/storage_tests/CMakeLists.txt7
2 files changed, 14 insertions, 0 deletions
diff --git a/storage/storage_integration_tests/CMakeLists.txt b/storage/storage_integration_tests/CMakeLists.txt
index e2cbd6f9ff..d6ee702928 100644
--- a/storage/storage_integration_tests/CMakeLists.txt
+++ b/storage/storage_integration_tests/CMakeLists.txt
@@ -66,5 +66,12 @@ omim_link_libraries(
${LIBZ}
)
+if (PLATFORM_LINUX)
+ omim_link_libraries(
+ ${PROJECT_NAME}
+ dl
+ )
+endif()
+
link_opengl(${PROJECT_NAME})
link_qt5_core(${PROJECT_NAME})
diff --git a/storage/storage_tests/CMakeLists.txt b/storage/storage_tests/CMakeLists.txt
index 529f6b546b..ea5d6c9532 100644
--- a/storage/storage_tests/CMakeLists.txt
+++ b/storage/storage_tests/CMakeLists.txt
@@ -66,4 +66,11 @@ omim_link_libraries(
${LIBZ}
)
+if (PLATFORM_LINUX)
+ omim_link_libraries(
+ ${PROJECT_NAME}
+ dl
+ )
+endif()
+
link_qt5_core(${PROJECT_NAME})