diff options
Diffstat (limited to 'lib/CMakeLists.txt')
-rw-r--r-- | lib/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index a52bc7b..416f8d1 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -6,7 +6,7 @@ SET(BEMENU_SOURCE util.c filter.c library.c - draw/curses.c + 3rdparty/cdl.c ) # Configure @@ -29,6 +29,9 @@ ENDIF () STRING(REGEX MATCHALL "[0-9]+" VERSION_COMPONENTS ${BEMENU_VERSION}) LIST(GET VERSION_COMPONENTS 0 SOVERSION) +# Compile renderer plugins +ADD_SUBDIRECTORY(renderers) + # Compile INCLUDE_DIRECTORIES(${BEMENU_INCLUDE} ${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(bemenu SHARED ${BEMENU_SOURCE}) |