polybar/CMakeLists.txt

37 lines
764 B
CMake
Raw Normal View History

2016-05-19 14:41:06 +00:00
#
# Build configuration
#
2016-11-02 19:22:45 +00:00
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
2016-05-24 12:24:45 +00:00
2016-11-19 05:22:44 +00:00
project(polybar C CXX)
2016-05-19 14:41:06 +00:00
2016-11-02 19:22:45 +00:00
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
${PROJECT_SOURCE_DIR}/cmake
2017-01-26 16:17:02 +00:00
${PROJECT_SOURCE_DIR}/cmake/common
2016-11-02 19:22:45 +00:00
${PROJECT_SOURCE_DIR}/cmake/modules)
2016-11-02 19:22:45 +00:00
include(utils)
2017-01-26 16:17:02 +00:00
include(01-core)
include(02-opts)
include(03-libs)
include(04-targets)
include(05-summary)
2016-06-15 03:32:35 +00:00
2017-01-26 16:17:02 +00:00
add_subdirectory(doc)
2017-05-19 10:30:26 +00:00
add_subdirectory(doc/bash)
2017-01-26 16:17:02 +00:00
add_subdirectory(doc/zsh)
add_subdirectory(include)
add_subdirectory(lib)
add_subdirectory(man)
add_subdirectory(src bin)
2016-10-24 23:46:26 +00:00
# We need to enable testing in the root folder so that 'ctest' and 'make test'
# can be run in the build directory
enable_testing()
2016-10-12 05:17:03 +00:00
if(BUILD_TESTS)
2017-01-26 16:17:02 +00:00
add_subdirectory(tests)
2016-10-24 23:46:26 +00:00
else()
2017-01-26 16:17:02 +00:00
add_subdirectory(tests EXCLUDE_FROM_ALL)
2016-10-12 05:17:03 +00:00
endif()