Commit 5a369686 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Configure: provide a switch to build for a "Windows Store App" target

"Windows Store App" are what we used to call Metro Apps, or Modern UI
apps.
They are apps without HWMD and without Console
parent ecfe1666
......@@ -461,6 +461,16 @@ dnl Check for fnative-struct or mms-bitfields support for mingw32
fi
])
AC_ARG_ENABLE(winstore_app,
AS_HELP_STRING([--enable-winstore-app],
[Build targetted for Windows Store apps (default disabled)]))
AS_IF([test "${SYS}" = "mingw32"], [
AS_IF([test "${enable_winstore_app}" == "yes"], [
AC_DEFINE(WINAPI_FAMILY_APP, 1, [Define if you want to build for Windows Store apps])])
])
dnl
dnl Buggy glibc prevention. Purposedly not cached.
dnl See sourceware.org bugs 5058 and 5443.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment