mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Add missing #ifdef CHATTERINO_HAVE_PLUGINS
This commit is contained in:
parent
bc0d30615a
commit
26a5a24eea
1 changed files with 12 additions and 10 deletions
|
@ -1,16 +1,17 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "Application.hpp"
|
#ifdef CHATTERINO_HAVE_PLUGINS
|
||||||
#include "controllers/commands/CommandController.hpp"
|
# include "Application.hpp"
|
||||||
|
# include "controllers/commands/CommandController.hpp"
|
||||||
|
|
||||||
#include <magic_enum.hpp>
|
# include <magic_enum.hpp>
|
||||||
#include <QDir>
|
# include <QDir>
|
||||||
#include <QJsonArray>
|
# include <QJsonArray>
|
||||||
#include <QJsonObject>
|
# include <QJsonObject>
|
||||||
#include <QString>
|
# include <QString>
|
||||||
#include <semver/semver.hpp>
|
# include <semver/semver.hpp>
|
||||||
|
|
||||||
#include <set>
|
# include <set>
|
||||||
#include <vector>
|
# include <vector>
|
||||||
|
|
||||||
struct lua_State;
|
struct lua_State;
|
||||||
|
|
||||||
|
@ -143,3 +144,4 @@ private:
|
||||||
friend class PluginController;
|
friend class PluginController;
|
||||||
};
|
};
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue