Skip to content

Commit f5b2741

Browse files
committed
build: aws: compression: Use LDFLAGS instead of LIBRARIES
Using LIBRARIES does not point into the right place of the apache arrow-glib and parquet-glib libraries. Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 258f694 commit f5b2741

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aws/compression/arrow/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set(src
44
add_library(flb-aws-arrow STATIC ${src})
55

66
target_include_directories(flb-aws-arrow PRIVATE ${ARROW_GLIB_INCLUDE_DIRS})
7-
target_link_libraries(flb-aws-arrow ${ARROW_GLIB_LIBRARIES})
7+
target_link_libraries(flb-aws-arrow ${ARROW_GLIB_LDFLAGS})
88
if (ARROW_GLIB_PARQUET_FOUND)
99
target_include_directories(flb-aws-arrow PRIVATE ${ARROW_GLIB_PARQUET_INCLUDE_DIRS})
10-
target_link_libraries(flb-aws-arrow ${ARROW_GLIB_PARQUET_LIBRARIES})
10+
target_link_libraries(flb-aws-arrow ${ARROW_GLIB_PARQUET_LDFLAGS})
1111
endif()

0 commit comments

Comments
 (0)