Skip to content

Commit

Permalink
configure.ac: add $EXEEXT
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Jun 7, 2023
1 parent 533a7a8 commit 5193285
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -132,43 +132,43 @@ ENABLE_AUTO([all],
ENABLE_AUTO([binaural], [binaural renderer (using HRIRs)],
[
AS_IF([test x$enable_binaural = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-binaural"])
[SSR_executables="$SSR_executables ssr-binaural$EXEEXT"])
])

ENABLE_AUTO([brs], [Binaural Room Synthesis renderer (using BRIRs)],
[
AS_IF([test x$enable_brs = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-brs"])
[SSR_executables="$SSR_executables ssr-brs$EXEEXT"])
])

ENABLE_AUTO([wfs], [Wave Field Synthesis renderer],
[
AS_IF([test x$enable_wfs = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-wfs"])
[SSR_executables="$SSR_executables ssr-wfs$EXEEXT"])
])

ENABLE_AUTO([vbap], [Vector Base Amplitude Panning renderer],
[
AS_IF([test x$enable_vbap = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-vbap"])
[SSR_executables="$SSR_executables ssr-vbap$EXEEXT"])
])

ENABLE_AUTO([aap], [Ambisonics Amplitude Panning renderer],
[
AS_IF([test x$enable_aap = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-aap"])
[SSR_executables="$SSR_executables ssr-aap$EXEEXT"])
])

ENABLE_AUTO([generic], [generic renderer],
[
AS_IF([test x$enable_generic = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-generic"])
[SSR_executables="$SSR_executables ssr-generic$EXEEXT"])
])

ENABLE_AUTO([dca],[Distance-coded Ambisonics renderer],
[
AS_IF([test x$enable_dca = xyes -o x$have_all = xyes],
[SSR_executables="$SSR_executables ssr-dca"])
[SSR_executables="$SSR_executables ssr-dca$EXEEXT"])
])

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

0 comments on commit 5193285

Please sign in to comment.