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})