Skip to content

Commit 55878d4

Browse files
committed
Fix include dir
1 parent b92085e commit 55878d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project('otezip', 'c',
33
default_options : ['c_std=c99', 'warning_level=2'])
44

55
otezip_src = files('src/lib/otezip.c')
6-
otezip_inc = include_directories('src/include')
6+
otezip_inc = include_directories('src/include/otezip')
77

88
otezip_lib = static_library('otezip',
99
otezip_src,
@@ -25,4 +25,4 @@ executable('otezip',
2525
)
2626

2727
# For subproject usage
28-
otezip_subproject = true
28+
otezip_subproject = true

0 commit comments

Comments
 (0)