Skip to content

Commit 6652112

Browse files
committed
configure.ac: add $EXEEXT
1 parent 224b1f8 commit 6652112

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

configure.ac

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,43 +132,43 @@ ENABLE_AUTO([all],
132132
ENABLE_AUTO([binaural], [binaural renderer (using HRIRs)],
133133
[
134134
AS_IF([test x$enable_binaural = xyes -o x$have_all = xyes],
135-
[SSR_executables="$SSR_executables ssr-binaural"])
135+
[SSR_executables="$SSR_executables ssr-binaural$EXEEXT"])
136136
])
137137

138138
ENABLE_AUTO([brs], [Binaural Room Synthesis renderer (using BRIRs)],
139139
[
140140
AS_IF([test x$enable_brs = xyes -o x$have_all = xyes],
141-
[SSR_executables="$SSR_executables ssr-brs"])
141+
[SSR_executables="$SSR_executables ssr-brs$EXEEXT"])
142142
])
143143

144144
ENABLE_AUTO([wfs], [Wave Field Synthesis renderer],
145145
[
146146
AS_IF([test x$enable_wfs = xyes -o x$have_all = xyes],
147-
[SSR_executables="$SSR_executables ssr-wfs"])
147+
[SSR_executables="$SSR_executables ssr-wfs$EXEEXT"])
148148
])
149149

150150
ENABLE_AUTO([vbap], [Vector Base Amplitude Panning renderer],
151151
[
152152
AS_IF([test x$enable_vbap = xyes -o x$have_all = xyes],
153-
[SSR_executables="$SSR_executables ssr-vbap"])
153+
[SSR_executables="$SSR_executables ssr-vbap$EXEEXT"])
154154
])
155155

156156
ENABLE_AUTO([aap], [Ambisonics Amplitude Panning renderer],
157157
[
158158
AS_IF([test x$enable_aap = xyes -o x$have_all = xyes],
159-
[SSR_executables="$SSR_executables ssr-aap"])
159+
[SSR_executables="$SSR_executables ssr-aap$EXEEXT"])
160160
])
161161

162162
ENABLE_AUTO([generic], [generic renderer],
163163
[
164164
AS_IF([test x$enable_generic = xyes -o x$have_all = xyes],
165-
[SSR_executables="$SSR_executables ssr-generic"])
165+
[SSR_executables="$SSR_executables ssr-generic$EXEEXT"])
166166
])
167167

168168
ENABLE_AUTO([dca],[Distance-coded Ambisonics renderer],
169169
[
170170
AS_IF([test x$enable_dca = xyes -o x$have_all = xyes],
171-
[SSR_executables="$SSR_executables ssr-dca"])
171+
[SSR_executables="$SSR_executables ssr-dca$EXEEXT"])
172172
])
173173

174174
dnl Note: For what happens with SSR_executables see src/Makefile.am

0 commit comments

Comments
 (0)