Preparing the upcoming release, switch to experimental Added build dependencies: - gcc (>= 4:6), - g++ (>= 4:6), - liblxqt0-dev (>= 0.10.96~), Rework symbols (Closes: #831083) Fixed VCS fields, using plain /git/ Fixed copyright Format field, using https Exported LC_ALL=C.UTF-8, make builds reproducible Set CMAKE_BUILD_TYPE=RelWithDebInfo
12 lines
218 B
C
12 lines
218 B
C
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
QString get_kb_layout_dir();
|
|
void add_custom_color_scheme_dir(const QString& custom_dir);
|
|
const QStringList get_color_schemes_dirs();
|
|
|
|
#endif
|