From 87f0152fbe8495c3d53cdf3a2989b97bf1ec4613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Walenciak?= Date: Wed, 6 Sep 2017 19:34:41 +0200 Subject: [PATCH] linking against exiv2lib to fix link problems --- bigtiff/CMakeLists.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bigtiff/CMakeLists.txt b/bigtiff/CMakeLists.txt index fd9c5eb0..44f5798f 100644 --- a/bigtiff/CMakeLists.txt +++ b/bigtiff/CMakeLists.txt @@ -1,14 +1,11 @@ add_executable(big_tiff_parser parse.cpp - - # - ${CMAKE_SOURCE_DIR}/src/basicio.cpp - ${CMAKE_SOURCE_DIR}/src/image.cpp - ${CMAKE_SOURCE_DIR}/src/types.cpp ) target_include_directories(big_tiff_parser PRIVATE ${CMAKE_SOURCE_DIR}/include/exiv2 ${CMAKE_SOURCE_DIR}/src ) + +target_link_libraries(big_tiff_parser PRIVATE exiv2lib)