mirror of
https://github.com/Cloudef/bemenu
synced 2024-11-23 17:32:11 +01:00
f76cfbca4f
secure_getenv where it makes sense.
28 lines
655 B
CMake
28 lines
655 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
|
|
PROJECT(bemenu)
|
|
SET(BEMENU_NAME "bemenu")
|
|
SET(BEMENU_DESCRIPTION "Dynamic menu library and client program inspired by dmenu")
|
|
SET(BEMENU_VERSION "1.0.0")
|
|
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${bemenu_SOURCE_DIR}/CMake)
|
|
|
|
INCLUDE(CTest)
|
|
INCLUDE(GetGitRevisionDescription)
|
|
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
|
|
|
|
# C99 and _GNU_SOURCE for secure_getenv
|
|
ADD_DEFINITIONS(-std=c99 -D_GNU_SOURCE)
|
|
|
|
# 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
|