mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix include of lmdb++ with hunter
This commit is contained in:
parent
8a21c5942b
commit
d10276253f
2 changed files with 8 additions and 0 deletions
|
@ -22,7 +22,11 @@
|
|||
#include <QImage>
|
||||
#include <QString>
|
||||
|
||||
#if __has_include(<lmdbxx/lmdb++.h>)
|
||||
#include <lmdbxx/lmdb++.h>
|
||||
#else
|
||||
#include <lmdb++.h>
|
||||
#endif
|
||||
|
||||
#include <mtx/responses.hpp>
|
||||
|
||||
|
|
|
@ -26,7 +26,11 @@
|
|||
#include <QImage>
|
||||
#include <QString>
|
||||
|
||||
#if __has_include(<lmdbxx/lmdb++.h>)
|
||||
#include <lmdbxx/lmdb++.h>
|
||||
#else
|
||||
#include <lmdb++.h>
|
||||
#endif
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
#include <mtx/responses.hpp>
|
||||
|
|
Loading…
Reference in a new issue