Skip to content

Commit f446582

Browse files
committed
vo-aacenc.wrap: Fix building as a subproject
Due to the header layout, this was previously only usable after installation into a prefix.
1 parent 4c4efeb commit f446582

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

releases.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4435,6 +4435,7 @@
44354435
"vo-aacenc"
44364436
],
44374437
"versions": [
4438+
"0.1.3-2",
44384439
"0.1.3-1"
44394440
]
44404441
},

subprojects/packagefiles/vo-aacenc/common/include/meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ if cc.get_define('_MSC_VER') != '' and cc.get_define('__clang__') != ''
2020
),
2121
]
2222
endif
23+
24+
subdir('vo-aacenc')
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
fs = import('fs')
2+
foreach h : aacencinclude_headers
3+
configure_file(
4+
input: h,
5+
output: fs.name(h),
6+
copy: true,
7+
)
8+
endforeach

subprojects/packagefiles/vo-aacenc/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project(
88
],
99
license: 'Apache-2.0',
1010
version: '0.1.3',
11-
meson_version: '>= 0.52.0',
11+
meson_version: '>= 0.59.0',
1212
)
1313

1414
armv7neon = false

0 commit comments

Comments
 (0)