mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Make windres configurable
The windres program is typically not called windres for cross compilation. Now you can call configure with the argument WINDRES=x86_64-w64-mingw32-windres in order to use the windres program on a standard debian installation.
This commit is contained in:
parent
08afc52c4c
commit
fddaa6adeb
@ -117,6 +117,8 @@ AC_CHECK_LIB(psapi, main, [LIBPSAPI=-lpsapi])
|
||||
AC_SUBST(LIBPSAPI)
|
||||
AC_CHECK_LIB(gdi32, main)
|
||||
AC_CHECK_LIB(ole32, main)
|
||||
test x"$WINDRES" = x && WINDRES=windres
|
||||
AC_SUBST(WINDRES)
|
||||
|
||||
LYX_USE_INCLUDED_BOOST
|
||||
LYX_USE_INCLUDED_MYTHES
|
||||
|
@ -42,7 +42,7 @@ lyx_LDADD = \
|
||||
if LYX_WIN_RESOURCE
|
||||
.rc.o:
|
||||
cp $(top_srcdir)/development/Win32/packaging/icons/lyx_*32x32.ico .
|
||||
windres -I$(top_builddir) --preprocessor "$(CPP) -xc-header -DRC_INVOKED" $< -o $@
|
||||
$(WINDRES) -I$(top_builddir) --preprocessor "$(CPP) -xc-header -DRC_INVOKED" $< -o $@
|
||||
endif
|
||||
|
||||
if INSTALL_MACOSX
|
||||
|
Loading…
Reference in New Issue
Block a user