set LIBZIP_LIBRARY to "" if libzip was not found

This commit is contained in:
Patrick Brosi 2022-10-12 12:22:16 +02:00
parent f71207159c
commit 79dd70c2f5
2 changed files with 3 additions and 1 deletions

View file

@ -45,5 +45,7 @@ MARK_AS_ADVANCED(LIBZIP_LIBRARY LIBZIP_INCLUDE_DIR LIBZIP_CONF_INCLUDE_DIR LIBZI
IF (LIBZIP_FOUND)
MESSAGE(STATUS "Found libzip: ${LIBZIP_LIBRARY}")
ELSE (LIBZIP_FOUND)
SET(LIBZIP_LIBRARY "")
SET(LIBZIP_INCLUDE_DIRS "")
MESSAGE(STATUS "Could not find libzip")
ENDIF (LIBZIP_FOUND)

View file

@ -17,6 +17,6 @@ add_executable(pfaedle ${pfaedle_main})
add_library(pfaedle_dep ${pfaedle_SRC})
include_directories(pfaedle_dep PUBLIC ${PROJECT_SOURCE_DIR}/src/cppgtfs/src)
target_link_libraries(pfaedle pfaedle_dep util configparser ad_cppgtfs -lpthread)
target_link_libraries(pfaedle pfaedle_dep util configparser ad_cppgtfs -lpthread ${LIBZIP_LIBRARY})
add_subdirectory(tests)