Skip to content

Commit 61fae60

Browse files
meson: Handle template files for win32 README and NSIS installer
1 parent 594aab8 commit 61fae60

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

meson.build

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ subdir('src')
208208
subdir('po')
209209
subdir('man')
210210
subdir('images')
211+
if have_windows
212+
subdir('win32')
213+
endif
211214

212215

213216
install_data('AUTHORS', 'COPYING')

win32/meson.build

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
configure_file(
2+
input: 'audacious.nsi.in',
3+
output: 'audacious.nsi',
4+
configuration: conf
5+
)
6+
7+
subdir('override')

win32/override/meson.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
configure_file(
2+
input: 'README.txt.in',
3+
output: 'README.txt',
4+
configuration: conf
5+
)

0 commit comments

Comments
 (0)