diff options
author | Louie S <louie@example.com> | 2023-03-04 15:05:35 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-03-04 15:05:35 -0800 |
commit | 8a9b2149b70c6fe47915f6be3789658a34847efa (patch) | |
tree | e0997db580739efcae33b1c558e5baed652fc3a8 /configure.ac | |
parent | c50c292fc754106003e21474c07b03e81889dba9 (diff) |
Implement checking for windres tool in configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 5d958ca..78ee96c 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,12 @@ AC_ARG_ENABLE([embed_icon], [AS_HELP_STRING([--disable-embed-icon], [embed icon in windows executable (default is yes)])], [embed_icon=no]) +if test "x$embed_icon" = "xyes"; then + AC_CHECK_TOOL([WINDRES], [windres]) + AS_VAR_IF([WINDRES], [], + [AC_MSG_WARN([Cannot embed icon]) + embed_icon=no]) +fi AM_CONDITIONAL([EMBED_ICON], [test "$embed_icon" = "yes"]) AC_CONFIG_FILES([Makefile |