HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
73 lines
2.1 KiB
# Common NMake Makefile module for checking the build environment is sane |
|
# for building introspection files under MSVC/NMake. |
|
# This can be copied from $(gi_srcroot)\build\win32 for GNOME items |
|
# that support MSVC builds and introspection under MSVC. |
|
|
|
# Can override with env vars as needed |
|
# You will need to have built gobject-introspection for this to work. |
|
# Change or pass in or set the following to suit your environment |
|
|
|
!if "$(PREFIX)" == "" |
|
PREFIX = ..\..\..\vs$(VSVER)\$(PLAT) |
|
!endif |
|
|
|
# Note: The PYTHON must be the Python release series that was used to build |
|
# the GObject-introspection scanner Python module! |
|
# Either having python.exe your PATH will work or passing in |
|
# PYTHON=<full path to your Python interpretor> will do |
|
|
|
# This is required, and gobject-introspection needs to be built |
|
# before this can be successfully run. |
|
!if "$(PYTHON)" == "" |
|
PYTHON=python |
|
!endif |
|
|
|
# Don't change anything following this line! |
|
|
|
GIR_SUBDIR = share\gir-1.0 |
|
GIR_TYPELIBDIR = lib\girepository-1.0 |
|
G_IR_SCANNER = $(PREFIX)\bin\g-ir-scanner |
|
G_IR_COMPILER = $(PREFIX)\bin\g-ir-compiler.exe |
|
G_IR_INCLUDEDIR = $(PREFIX)\$(GIR_SUBDIR) |
|
G_IR_TYPELIBDIR = $(PREFIX)\$(GIR_TYPELIBDIR) |
|
|
|
VALID_PKG_CONFIG_PATH = FALSE |
|
|
|
MSG_INVALID_PKGCONFIG = You must set or specifiy a valid PKG_CONFIG_PATH |
|
MSG_INVALID_CFG = You need to specify or set CFG to be release or debug to use this Makefile to build the Introspection Files |
|
|
|
ERROR_MSG = |
|
|
|
BUILD_INTROSPECTION = TRUE |
|
|
|
!if ![pkg-config --print-errors --errors-to-stdout $(CHECK_PACKAGE) > pkgconfig.x] \ |
|
&& ![setlocal] \ |
|
&& ![set file="pkgconfig.x"] \ |
|
&& ![FOR %A IN (%file%) DO @echo PKG_CHECK_SIZE=%~zA > pkgconfig.chksize] \ |
|
&& ![del $(ERRNUL) /q/f pkgconfig.x] |
|
!endif |
|
|
|
!include pkgconfig.chksize |
|
!if "$(PKG_CHECK_SIZE)" == "0" |
|
VALID_PKG_CONFIG_PATH = TRUE |
|
!else |
|
VALID_PKG_CONFIG_PATH = FALSE |
|
!endif |
|
|
|
!if ![del $(ERRNUL) /q/f pkgconfig.chksize] |
|
!endif |
|
|
|
VALID_CFGSET = FALSE |
|
!if "$(CFG)" == "release" || "$(CFG)" == "debug" |
|
VALID_CFGSET = TRUE |
|
!endif |
|
|
|
!if "$(VALID_PKG_CONFIG_PATH)" != "TRUE" |
|
BUILD_INTROSPECTION = FALSE |
|
ERROR_MSG = $(MSG_INVALID_PKGCONFIG) |
|
!endif |
|
|
|
!if "$(VALID_CFGSET)" != "TRUE" |
|
BUILD_INTROSPECTION = FALSE |
|
ERROR_MSG = $(MSG_INVALID_CFG) |
|
!endif
|
|
|