2019-07-25 08:12:25 +00:00
|
|
|
# NMake Makefile portion for enabling features for Windows builds
|
|
|
|
|
|
|
|
!include detectenv-msvc.mak
|
|
|
|
|
|
|
|
# Configurable paths to the various interpreters we need
|
|
|
|
!ifndef PERL
|
|
|
|
PERL = perl
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifndef PYTHON
|
|
|
|
PYTHON=python
|
|
|
|
!endif
|
|
|
|
|
|
|
|
# Configurable paths to the various scripts and tools that we are using
|
|
|
|
!ifndef GLIB_MKENUMS
|
|
|
|
GLIB_MKENUMS = $(PREFIX)\bin\glib-mkenums
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifndef GLIB_GENMARSHAL
|
|
|
|
GLIB_GENMARSHAL = $(PREFIX)\bin\glib-genmarshal
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifndef GLIB_COMPILE_RESOURCES
|
|
|
|
GLIB_COMPILE_RESOURCES = $(PREFIX)\bin\glib-compile-resources.exe
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifndef GDBUS_CODEGEN
|
|
|
|
GDBUS_CODEGEN = $(PREFIX)\bin\gdbus-codegen
|
|
|
|
!endif
|
|
|
|
|
|
|
|
# Please do not change anything beneath this line unless maintaining the NMake Makefiles
|
2019-07-25 10:04:58 +00:00
|
|
|
GTK_VERSION = @GTK_VERSION@
|