Skip to content
Snippets Groups Projects
Commit a9f4e219 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

configure: add an option to set the PATH to WIX

In the CI the path is in a wine location. If we build WIX in contribs, we can
use that path instead.

We default to the contrib path unless set by the user.
parent 268d209e
No related branches found
No related tags found
Loading
......@@ -1430,6 +1430,19 @@ AS_IF([test "${SYS}" = "mingw32"], [
AC_SUBST([WIN32_PATH_CMD])
AC_ARG_WITH([wix],
AS_HELP_STRING([--with-wix=DIR], [location of WIX binary (default: contribs)])
)
AS_IF([test -z "${with_wix}"], [
AS_IF([test -n "${CONTRIB_DIR}"], [
with_wix="${CONTRIB_DIR}/bin"
])
])
AS_IF([test "${with_wix}" != "no"], [
WIXPATH="${with_wix}"
])
AC_SUBST([WIXPATH])
dnl
dnl Check the CPU
dnl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment