Must not install .so's from build dependencies. We should be using .a files instead.

This commit is contained in:
Robin E.R. Davies
2026-06-17 12:12:46 -04:00
parent 8bc43e76fd
commit d6ee400394
2 changed files with 2 additions and 23 deletions
+2 -2
View File
@@ -207,7 +207,7 @@ add_compile_definitions(DEBIAN_ARCHITECTURE="${DEBIAN_ARCHITECTURE}")
if (CMAKE_BUILD_TYPE MATCHES Debug)
message(STATUS "Debug build")
# Must not -D_GLIBCXX_DEBUG, since it conflict with SQLiteCpp.lol
# Must not -D_GLIBCXX_DEBUG, since it conflict with SQLiteCpp
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g -DDEBUG " )
if (USE_SANITIZE)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -static-libasan " )
@@ -412,7 +412,7 @@ target_link_libraries(libpipedald
PUBLIC
PiPedalCommon
PRIVATE
SQLiteCpp
SQLiteCpp_static
OpenSSL::Crypto
${PipeWire_LIBRARIES}
)