mirror of
https://github.com/Cloudef/bemenu
synced 2024-11-23 17:32:11 +01:00
12 lines
242 B
CMake
12 lines
242 B
CMake
SET(RENDERERS
|
|
"curses"
|
|
"wayland"
|
|
)
|
|
|
|
SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/renderers)
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|
FOREACH (renderer ${RENDERERS})
|
|
ADD_SUBDIRECTORY(${renderer})
|
|
ENDFOREACH()
|