Moving all headers to elfspy/

This commit is contained in:
sergiotarxz 2022-08-02 06:53:52 +02:00
parent f04e33cbc1
commit 0a49a93a29
30 changed files with 30 additions and 30 deletions

View File

@ -1,4 +1,4 @@
#include "Call.h" #include "elfspy/Call.h"
namespace spy namespace spy
{ {

View File

@ -1,4 +1,4 @@
#include "GOTEntry.h" #include "elfspy/GOTEntry.h"
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

View File

View File

@ -14,39 +14,39 @@ sources = [
] ]
headers = [ headers = [
'./Capture.h', './elfspy/Capture.h',
'./HookImpl.h', './elfspy/HookImpl.h',
'./Thunk.h', './elfspy/Thunk.h',
'./MFile.h', './elfspy/MFile.h',
'./Lambda.h', './elfspy/Lambda.h',
'./Method.h', './elfspy/Method.h',
'./Profiler.h', './elfspy/Profiler.h',
'./GOTEntry.h', './elfspy/GOTEntry.h',
'./MethodInfo.h', './elfspy/MethodInfo.h',
'./Section.h', './elfspy/Section.h',
'./ELFObject.h', './elfspy/ELFObject.h',
'./Call.h', './elfspy/Call.h',
'./SectionHeader.h', './elfspy/SectionHeader.h',
'./Variadic.h', './elfspy/Variadic.h',
'./MethodPointer.h', './elfspy/MethodPointer.h',
'./Fail.h', './elfspy/Fail.h',
'./Result.h', './elfspy/Result.h',
'./ThunkHandle.h', './elfspy/ThunkHandle.h',
'./Report.h', './elfspy/Report.h',
'./SPY.h', './elfspy/SPY.h',
'./Fake.h', './elfspy/Fake.h',
'./Error.h', './elfspy/Error.h',
'./Hook.h', './elfspy/Hook.h',
'./ELFInfo.h', './elfspy/ELFInfo.h',
'./Function.h', './elfspy/Function.h',
'./HookBase.h', './elfspy/HookBase.h',
'./Arg.h', './elfspy/Arg.h',
] ]
elfspylib = library('elfspy', elfspylib = library('elfspy',
sources, sources,
install : true, install : true,
include_directories: ['.', '..'], include_directories: ['.'],
c_args: ['-fPIC', '-O0', '-g'], c_args: ['-fPIC', '-O0', '-g'],
) )
install_headers(headers, subdir: 'elfspy') install_headers(headers, subdir: 'elfspy')