From a6abe5e6d317c848e9bd10e51fe942cd0123eeee Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Wed, 17 Dec 2014 01:09:48 +1100 Subject: [PATCH] Do not force library to be static --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b10dbd2..f49b28d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ if(WIN32) include_directories(SYSTEM "./core/lib/win32/") endif() include_directories("./core/src/") -add_library(libzxing STATIC ${LIBZXING_FILES}) +add_library(libzxing ${LIBZXING_FILES}) set_target_properties(libzxing PROPERTIES PREFIX "") find_package(Iconv) if(ICONV_FOUND)