From 16683e4fbdbe1f237f6807b6d4184cf610eddbf6 Mon Sep 17 00:00:00 2001 From: Thomas Fussell Date: Mon, 3 Jul 2017 06:10:23 -0700 Subject: [PATCH] compile xlntarrow as shared lib for now --- arrow/xlntarrow/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrow/xlntarrow/CMakeLists.txt b/arrow/xlntarrow/CMakeLists.txt index 3de7ebd6..153cefc3 100644 --- a/arrow/xlntarrow/CMakeLists.txt +++ b/arrow/xlntarrow/CMakeLists.txt @@ -8,8 +8,8 @@ set(XLNT_ARROW ${CMAKE_CURRENT_SOURCE_DIR}/xlntarrow.hpp ${CMAKE_CURRENT_SOURCE_DIR}/xlntarrow.cpp) -add_library(xlntarrow STATIC ${XLNT_ARROW}) +add_library(xlntarrow SHARED ${XLNT_ARROW}) target_link_libraries(xlntarrow PRIVATE xlnt) target_include_directories(xlntarrow PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) -target_include_directories(xlntarrow PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../../../Miniconda3/Library/include) +target_include_directories(xlntarrow PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../../miniconda3/include) target_include_directories(xlntarrow PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../include)