[transit] Added library.

This commit is contained in:
Olga Khlopkova 2020-05-26 10:18:24 +03:00 committed by Vladimir Byko-Ianko
parent d6625b26c2
commit 21cc040fa5
2 changed files with 16 additions and 7 deletions

View file

@ -17,4 +17,7 @@ set(
omim_add_library(${PROJECT_NAME} ${SRC})
omim_add_test_subdirectory(transit_tests)
add_subdirectory(world_feed)
if (PLATFORM_DESKTOP)
add_subdirectory(world_feed)
endif()

View file

@ -53,21 +53,27 @@ omim_link_libraries(
stb_image
sdf_image
vulkan_wrapper
${Qt5Widgets_LIBRARIES}
${Qt5Network_LIBRARIES}
${LIBZ}
)
if (PLATFORM_LINUX)
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
dl
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
)
endif()
if (PLATFORM_LINUX)
omim_link_libraries(
${PROJECT_NAME}
dl
)
endif()
link_opengl(${PROJECT_NAME})
link_qt5_core(${PROJECT_NAME})
link_qt5_network(${PROJECT_NAME})
omim_add_test_subdirectory(world_feed_tests)
add_subdirectory(gtfs_converter)