Fixed capstone build issue on mac

On mac, capstone's include path is `include/capstone` instead of just `include`...
This commit is contained in:
WerWolv
2021-01-25 15:19:56 +01:00
parent 362f8acb15
commit 27e5f8eeb6
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,10 @@
#pragma once
#if __has_include(<capstone/capstone.h>)
#include <capstone/capstone.h>
#else
#include <capstone.h>
#endif
#include <hex.hpp>
namespace hex {