From 3ec9983f020332091bfafbb6ebcde24c02612ada Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 31 Dec 2024 04:35:15 -0500 Subject: [PATCH] add FIXME about ffmpeg linking issues with static notcurses --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a0b87591..b7272a28c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -313,6 +313,8 @@ endif() file(GLOB NCSRCS CONFIGURE_DEPENDS src/media/*.c src/media/*.cpp) add_library(notcurses SHARED ${NCSRCS} ${COMPATSRC}) if(${USE_STATIC}) +# can't build binaries against static notcurses until ffmpeg linking issues +# are resolved (USE_STATIC_BINARIES) FIXME add_library(notcurses-static STATIC ${NCSRCS} ${COMPATSRC}) else() add_library(notcurses-static STATIC EXCLUDE_FROM_ALL ${NCSRCS} ${COMPATSRC})