From 0be99e1c08343f8c0f2670fd7097e24aae716d15 Mon Sep 17 00:00:00 2001 From: Vlad Vesa Date: Thu, 23 Feb 2023 23:14:21 +0200 Subject: [PATCH] fixed shapevl app build --- src/shapevl/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shapevl/CMakeLists.txt b/src/shapevl/CMakeLists.txt index bb55963..a191030 100644 --- a/src/shapevl/CMakeLists.txt +++ b/src/shapevl/CMakeLists.txt @@ -12,6 +12,7 @@ include_directories( add_executable(shapevl ${shapevl_main}) add_library(shapevl_dep ${shapevl_SRC}) +target_link_libraries(shapevl_dep PUBLIC ad_cppgtfs) include_directories(shapevl_dep PUBLIC ${PROJECT_SOURCE_DIR}/src/cppgtfs/src) -target_link_libraries(shapevl shapevl_dep util ad_cppgtfs -lpthread ${LIBZIP_LIBRARY}) +target_link_libraries(shapevl shapevl_dep util -lpthread ${LIBZIP_LIBRARY})