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
{

View File

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

View File

View File

View File

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