mirror of
https://github.com/polybar/polybar.git
synced 2024-11-25 13:55:47 -05:00
fix(build): Dont include old util lib
This commit is contained in:
parent
e8ead4d83f
commit
9972d56bb2
4 changed files with 5 additions and 2 deletions
|
@ -9,7 +9,6 @@
|
||||||
#include "modules/base.hpp"
|
#include "modules/base.hpp"
|
||||||
#include "interfaces/net.hpp"
|
#include "interfaces/net.hpp"
|
||||||
#include "services/logger.hpp"
|
#include "services/logger.hpp"
|
||||||
#include "services/store.hpp"
|
|
||||||
#include "drawtypes/icon.hpp"
|
#include "drawtypes/icon.hpp"
|
||||||
#include "drawtypes/label.hpp"
|
#include "drawtypes/label.hpp"
|
||||||
#include "drawtypes/animation.hpp"
|
#include "drawtypes/animation.hpp"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#if 0
|
||||||
#ifndef _SERVICES_STORE_HPP_
|
#ifndef _SERVICES_STORE_HPP_
|
||||||
#define _SERVICES_STORE_HPP_
|
#define _SERVICES_STORE_HPP_
|
||||||
|
|
||||||
|
@ -34,3 +35,4 @@ struct Store
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
|
@ -46,7 +46,7 @@ set(SOURCE_FILES
|
||||||
"src/services/command.cpp"
|
"src/services/command.cpp"
|
||||||
"src/services/inotify.cpp"
|
"src/services/inotify.cpp"
|
||||||
"src/services/logger.cpp"
|
"src/services/logger.cpp"
|
||||||
"src/services/store.cpp"
|
# "src/services/store.cpp"
|
||||||
"src/utils/cli.cpp"
|
"src/utils/cli.cpp"
|
||||||
"src/utils/config.cpp"
|
"src/utils/config.cpp"
|
||||||
"src/utils/io.cpp"
|
"src/utils/io.cpp"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#if 0
|
||||||
#include "services/logger.hpp"
|
#include "services/logger.hpp"
|
||||||
#include "services/store.hpp"
|
#include "services/store.hpp"
|
||||||
|
|
||||||
|
@ -63,3 +64,4 @@ void Store::set_string(const std::string& s)
|
||||||
std::memcpy(this->region.get_address(), s.c_str(), this->region.get_size());
|
std::memcpy(this->region.get_address(), s.c_str(), this->region.get_size());
|
||||||
this->flag();
|
this->flag();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue