refactor(build): Remove version number namespace

I don't know the original intention behind this but it clutters up debug
traces and basically makes ccache useless.

The only benefit it has, giving version info in stacktraces, is kind of
void since we already ask for version information on github issues.
This commit is contained in:
patrick96 2019-05-17 09:44:35 +02:00 committed by Patrick Ziegler
parent cb75857ff6
commit e1e28f09f3
3 changed files with 1 additions and 6 deletions

View File

@ -40,8 +40,6 @@ else()
set(APP_VERSION "${version_txt}")
endif()
STRING(REGEX REPLACE "[^a-zA-Z0-9_]" "_" APP_VERSION_NAMESPACE "v${APP_VERSION}")
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
${PROJECT_SOURCE_DIR}/cmake

View File

@ -8,10 +8,8 @@
#include "settings.hpp"
#define POLYBAR_NS \
namespace polybar { \
inline namespace APP_VERSION_NAMESPACE {
namespace polybar {
#define POLYBAR_NS_END \
} \
}
#ifndef PIPE_READ

View File

@ -6,7 +6,6 @@
#define APP_NAME "@PROJECT_NAME@"
#cmakedefine APP_VERSION "@APP_VERSION@"
#cmakedefine APP_VERSION_NAMESPACE @APP_VERSION_NAMESPACE@
#cmakedefine01 ENABLE_ALSA
#cmakedefine01 ENABLE_MPD