diff options
author | Toni Uhlig <Toni.Uhlig@tq-group.com> | 2017-12-04 14:41:22 +0100 |
---|---|---|
committer | Toni Uhlig <Toni.Uhlig@tq-group.com> | 2017-12-04 14:41:22 +0100 |
commit | a2bf9440d9b2c8ad5123098a8f166e872d16162e (patch) | |
tree | f18a1554cf7f523e715b48dffd446ba113f12008 /configure.ac | |
parent | 74dd64df1139d0fd5b07301e01e70cc2ef61cc7e (diff) |
pretty wxglade.ICON for Windows targets
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a6d19bc..bb89415 100644 --- a/configure.ac +++ b/configure.ac @@ -80,12 +80,17 @@ else utool_wxdir="" fi +AC_ARG_VAR(WINDRES, [Windows resource compiler command]) + ut_cflags="" ut_libs="" PROGRAM_EXT= +windres= case "${host}" in *-*-cygwin* | *-*-mingw32* ) + AC_CHECK_TOOL(WINDRES, [windres]) PROGRAM_EXT=".exe" + windres="${host_alias}-windres" ut_use_msw=yes ut_cflags="${ut_cflags} -D_UNICODE=1 -municode" ut_libs="${ut_libs} -static -lws2_32 -dynamic" @@ -115,10 +120,12 @@ else fi AM_CONDITIONAL([UT_BUILDGUI], [test x"${ut_buildgui}" = xyes]) +AM_CONDITIONAL([HAVE_WINDRES], [test x"${windres}" != x]) AC_SUBST([UT_CFLAGS], [${ut_cflags}]) AC_SUBST([UT_LIBS], [${ut_libs}]) AC_SUBST([WX_CFLAGS], [${wx_cflags}]) AC_SUBST([WX_LIBS], [${wx_libs}]) +AC_SUBST([WINDRES], [${windres}]) AC_CONFIG_HEADERS([src/config.h:src/config.h.in]) AC_OUTPUT @@ -130,6 +137,7 @@ UpdateTool was configured with: CFLAGS/CXXFLAGS..........: ${ut_cflags} Build GUI................: ${ut_buildgui:-disabled} Build for Windows........: ${ut_use_msw:-disabled} + Have windres.............: ${windres:-disabled} Host wxWidgets...........: ${enable_host_wxwidgets:-disabled} wxWidgets Version........: ${wx_version:-unknown} wxWidgets CFLAGS/CXXFLAGS: ${wx_cflags} |