2016-05-19 10:41:06 -04:00
|
|
|
#
|
|
|
|
# Build configuration
|
|
|
|
#
|
2020-12-21 19:58:21 -05:00
|
|
|
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
|
2020-12-21 19:59:26 -05:00
|
|
|
project(polybar CXX)
|
2016-05-24 08:24:45 -04:00
|
|
|
|
2019-04-04 17:25:09 -04:00
|
|
|
# Extract version information from version.txt. The first line that looks like
|
|
|
|
# a version string is used, so the file supports comments
|
|
|
|
file(STRINGS version.txt version_txt REGEX "^[0-9]+\\.[0-9]+\\.[0-9]+.*$" LIMIT_COUNT 1)
|
2018-12-14 03:30:17 -05:00
|
|
|
|
2018-12-14 03:51:04 -05:00
|
|
|
# If we are in a git repo we can get the version information from git describe
|
|
|
|
execute_process(COMMAND git describe --tags --dirty=-dev
|
2018-12-14 03:30:17 -05:00
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
2018-12-14 03:51:04 -05:00
|
|
|
RESULT_VARIABLE git_result
|
|
|
|
OUTPUT_VARIABLE git_describe
|
2018-12-14 03:30:17 -05:00
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
|
|
|
|
|
2018-12-14 03:51:04 -05:00
|
|
|
if(git_result EQUAL "0")
|
|
|
|
set(APP_VERSION "${git_describe}")
|
|
|
|
else()
|
2018-12-14 04:02:20 -05:00
|
|
|
message(STATUS "Could not detect version with git, falling back to built-in version information.")
|
2019-04-04 17:25:09 -04:00
|
|
|
set(APP_VERSION "${version_txt}")
|
2018-12-14 03:30:17 -05:00
|
|
|
endif()
|
|
|
|
|
2020-12-23 19:40:26 -05:00
|
|
|
list(APPEND CMAKE_MODULE_PATH
|
2016-11-02 15:22:45 -04:00
|
|
|
${PROJECT_SOURCE_DIR}/cmake
|
2017-01-26 11:17:02 -05:00
|
|
|
${PROJECT_SOURCE_DIR}/cmake/common
|
2016-11-02 15:22:45 -04:00
|
|
|
${PROJECT_SOURCE_DIR}/cmake/modules)
|
2016-05-20 05:20:58 -04:00
|
|
|
|
2019-06-24 12:08:59 -04:00
|
|
|
include(GNUInstallDirs)
|
2016-11-02 15:22:45 -04:00
|
|
|
include(utils)
|
2020-12-22 06:19:46 -05:00
|
|
|
include(01-core)
|
2017-01-26 11:17:02 -05:00
|
|
|
include(02-opts)
|
|
|
|
include(04-targets)
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2018-12-14 10:16:20 -05:00
|
|
|
if(BUILD_DOC)
|
|
|
|
add_subdirectory(doc)
|
|
|
|
endif()
|
2020-12-22 06:19:46 -05:00
|
|
|
|
2020-12-23 19:09:39 -05:00
|
|
|
if (BUILD_SHELL)
|
|
|
|
add_subdirectory(contrib/bash)
|
|
|
|
add_subdirectory(contrib/zsh)
|
|
|
|
endif()
|
2020-12-22 06:19:46 -05:00
|
|
|
|
2020-12-23 20:02:53 -05:00
|
|
|
# Setup everything that uses a C++ compiler (polybar, polybar-msg, tests)
|
2020-12-22 06:19:46 -05:00
|
|
|
if(HAS_CXX_COMPILATION)
|
|
|
|
include(cxx)
|
|
|
|
if(BUILD_LIBPOLY)
|
|
|
|
include(libpoly)
|
|
|
|
add_subdirectory(lib)
|
|
|
|
endif()
|
2020-12-21 21:43:06 -05:00
|
|
|
add_subdirectory(include)
|
|
|
|
add_subdirectory(src bin)
|
|
|
|
endif()
|
2016-10-24 19:46:26 -04:00
|
|
|
|
2018-04-07 16:16:55 -04:00
|
|
|
# We need to enable testing in the root folder so that 'ctest' and 'make test'
|
|
|
|
# can be run in the build directory
|
2016-10-12 01:17:03 -04:00
|
|
|
if(BUILD_TESTS)
|
2018-04-08 18:49:36 -04:00
|
|
|
enable_testing()
|
2018-11-21 12:46:33 -05:00
|
|
|
add_subdirectory(tests)
|
2016-10-12 01:17:03 -04:00
|
|
|
endif()
|
2019-04-08 17:19:12 -04:00
|
|
|
|
2020-12-23 18:56:31 -05:00
|
|
|
if (BUILD_CONFIG)
|
|
|
|
add_subdirectory(config)
|
2019-04-08 17:19:12 -04:00
|
|
|
endif()
|
|
|
|
|
2020-12-23 18:56:31 -05:00
|
|
|
include(05-summary)
|