4
0
mirror of https://github.com/QuasarApp/LIEF.git synced 2025-05-11 19:09:33 +00:00

Include according to config

This commit is contained in:
rthomas 2020-11-21 20:22:41 +01:00
parent b49786fd03
commit 2145d79efb
3 changed files with 13 additions and 0 deletions

@ -15,7 +15,9 @@
*/
#ifndef LIEF_ELF_H_
#define LIEF_ELF_H_
#include "LIEF/config.h"
#if defined(LIEF_ELF_SUPPORT)
#include "LIEF/ELF/hash.hpp"
#include "LIEF/ELF/utils.hpp"
#include "LIEF/ELF/enums.hpp"
@ -50,5 +52,6 @@
#include "LIEF/ELF/NoteDetails/NoteAbi.hpp"
#include "LIEF/ELF/NoteDetails/Core.hpp"
#include "LIEF/ELF/NoteDetails.hpp"
#endif
#endif

@ -16,6 +16,10 @@
#ifndef LIEF_MACHO_H_
#define LIEF_MACHO_H_
#include "LIEF/config.h"
#if defined(LIEF_MACHO_SUPPORT)
#include "LIEF/MachO/Binary.hpp"
#include "LIEF/MachO/BinaryParser.hpp"
#include "LIEF/MachO/BindingInfo.hpp"
@ -61,3 +65,4 @@
#include "LIEF/MachO/VersionMin.hpp"
#endif
#endif

@ -16,6 +16,9 @@
#ifndef LIEF_PE_H_
#define LIEF_PE_H_
#include "LIEF/config.h"
#if defined(LIEF_PE_SUPPORT)
#include "LIEF/PE/Parser.hpp"
#include "LIEF/PE/Section.hpp"
@ -73,3 +76,5 @@
#include "LIEF/PE/utils.hpp"
#endif
#endif