mirror of
https://github.com/Cloudef/bemenu
synced 2024-11-24 01:44:16 +01:00
21 lines
472 B
CMake
21 lines
472 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
|
|
PROJECT(bemenu)
|
|
INCLUDE(CTest)
|
|
SET(BEMENU_NAME "bemenu")
|
|
SET(BEMENU_DESCRIPTION "Dynamic menu library and client program inspired by dmenu")
|
|
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${chck_SOURCE_DIR}/CMake/modules)
|
|
|
|
# Compile library
|
|
ADD_SUBDIRECTORY(lib)
|
|
|
|
# Compile client
|
|
ADD_SUBDIRECTORY(client)
|
|
|
|
# Compile tests
|
|
ADD_SUBDIRECTORY(test)
|
|
|
|
# Generate documentation (make doxygen)
|
|
ADD_SUBDIRECTORY(doxygen)
|
|
|
|
# vim: set ts=8 sw=4 tw=0
|