From 05d1d6953f6f341523fe1c1f45c4df36997f07d6 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 2 Oct 2023 10:04:39 -0600 Subject: [PATCH] getting shared libs workflow working --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bb724cad..e26defdb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -58,7 +58,7 @@ foreach(kind ${kinds}) endif() # Assemble the library. - add_library(${lib_name} STATIC $ $) + add_library(${lib_name} $ $) # Link to bacio, and jasper always. target_link_libraries(${lib_name} PUBLIC bacio::bacio ${PNG_LIBRARIES} ${JASPER_LIBRARIES})