Fixing .. in the incorrect place.

This commit is contained in:
sergiotarxz 2022-08-02 06:39:11 +02:00
parent 12e963ceae
commit 01dee8e48f
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ headers = [
elfspylib = library('elfspy',
sources,
install : true,
include_directories: ['.'],
include_directories: ['.', '..'],
c_args: ['-fPIC', '-O0', '-g'],
)
install_headers(headers, subdir: 'elfspy')
pkg.generate(elfspylib)
elfspy_dep = declare_dependency (
include_directories: ['.', '..'],
include_directories: ['.'],
link_with: elfspylib
)