Skip to content
Snippets Groups Projects
Commit d1027625 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix include of lmdb++ with hunter

parent 8a21c594
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment