1# Change this (or specify PREFIX= when invoking this NMake Makefile) if 2# necessary, so that the libs and headers of the dependent third-party 3# libraries can be located. For instance, if building from GLib's 4# included Visual Studio projects, this should be able to locate the GLib 5# build out-of-the-box if they were not moved. GLib's headers will be 6# found in $(GLIB_PREFIX)\include\glib-2.0 and 7# $(GLIB_PREFIX)\lib\glib-2.0\include and its import library will be found 8# in $(GLIB_PREFIX)\lib. 9 10!if "$(PREFIX)" == "" 11PREFIX = ..\..\vs$(VSVER)\$(PLAT) 12!endif 13 14# Location of the PERL interpretor, for running glib-mkenums. glib-mkenums 15# needs to be found in $(PREFIX)\bin. Using either a 32-bit or x64 PERL 16# interpretor are supported for either a 32-bit or x64 build. 17 18!if "$(PERL)" == "" 19PERL = perl 20!endif 21 22# Location of the Python interpretor, for building introspection. The complete set 23# of Python Modules for introspection (the giscanner Python scripts and the _giscanner.pyd 24# compiled module) needs to be found in $(PREFIX)\lib\gobject-introspection\giscanner, and 25# the g-ir-scanner Python script and g-ir-compiler utility program needs to be found 26# in $(PREFIX)\bin, together with any DLLs they will depend on, if those DLLs are not already 27# in your PATH. 28# Note that the Python interpretor and the introspection modules and utility program must 29# correspond to the build type (i.e. 32-bit Release for 32-bit Release builds, and so on). 30# 31# For introspection, currently only Python 2.7.x is supported. This may change when Python 3.x 32# support is added upstream in gobject-introspection--when this happens, the _giscanner.pyd must 33# be the one that is built against the release series of Python that is used here. 34 35!if "$(PYTHON)" == "" 36PYTHON = python 37!endif 38 39# Location of the pkg-config utility program, for building introspection. It needs to be able 40# to find the pkg-config (.pc) files so that the correct libraries and headers for the needed libraries 41# can be located, using PKG_CONFIG_PATH. Using either a 32-bit or x64 pkg-config are supported for 42# either a 32-bit or x64 build. 43 44!if "$(PKG_CONFIG)" == "" 45PKG_CONFIG = pkg-config 46!endif 47 48# The items below this line should not be changed, unless one is maintaining 49# the NMake Makefiles. The exception is for the CFLAGS_ADD line(s) where one 50# could use his/her desired compiler optimization flags, if he/she knows what is 51# being done. 52 53# Check to see we are configured to build with MSVC (MSDEVDIR, MSVCDIR or 54# VCINSTALLDIR) or with the MS Platform SDK (MSSDK or WindowsSDKDir) 55!if !defined(VCINSTALLDIR) && !defined(WINDOWSSDKDIR) 56MSG = ^ 57This Makefile is only for Visual Studio 2008 and later.^ 58You need to ensure that the Visual Studio Environment is properly set up^ 59before running this Makefile. 60!error $(MSG) 61!endif 62 63ERRNUL = 2>NUL 64_HASH=^# 65 66!if ![echo VCVERSION=_MSC_VER > vercl.x] \ 67 && ![echo $(_HASH)if defined(_M_IX86) >> vercl.x] \ 68 && ![echo PLAT=Win32 >> vercl.x] \ 69 && ![echo $(_HASH)elif defined(_M_AMD64) >> vercl.x] \ 70 && ![echo PLAT=x64 >> vercl.x] \ 71 && ![echo $(_HASH)endif >> vercl.x] \ 72 && ![cl -nologo -TC -P vercl.x $(ERRNUL)] 73!include vercl.i 74!if ![echo VCVER= ^\> vercl.vc] \ 75 && ![set /a $(VCVERSION) / 100 - 6 >> vercl.vc] 76!include vercl.vc 77!endif 78!endif 79!if ![del $(ERRNUL) /q/f vercl.x vercl.i vercl.vc] 80!endif 81 82!if $(VCVERSION) > 1499 && $(VCVERSION) < 1600 83VSVER = 9 84!elseif $(VCVERSION) > 1599 && $(VCVERSION) < 1700 85VSVER = 10 86!elseif $(VCVERSION) > 1699 && $(VCVERSION) < 1800 87VSVER = 11 88!elseif $(VCVERSION) > 1799 && $(VCVERSION) < 1900 89VSVER = 12 90!elseif $(VCVERSION) > 1899 && $(VCVERSION) < 1910 91VSVER = 14 92!elseif $(VCVERSION) > 1909 && $(VCVERSION) < 1920 93VSVER = 15 94!elseif $(VCVERSION) > 1919 && $(VCVERSION) < 2000 95VSVER = 16 96!else 97VSVER = 0 98!endif 99 100!if "$(VSVER)" == "0" 101MSG = ^ 102This NMake Makefile set supports Visual Studio^ 1039 (2008) through 16 (2019). Your Visual Studio^ 104version is not supported. 105!error $(MSG) 106!elseif $(VSVER) < 15 107PDBVER = $(VSVER) 108!else 109PDBVER = 14 110!endif 111 112VALID_CFGSET = FALSE 113!if "$(CFG)" == "release" || "$(CFG)" == "debug" 114VALID_CFGSET = TRUE 115!endif 116 117# One may change these items, but be sure to test 118# the resulting binaries 119!if "$(CFG)" == "release" 120CFLAGS_ADD = /MD /O2 /MP /GL 121!if $(VSVER) > 9 && $(VSVER) < 14 122# Undocumented "enhance optimized debugging" switch. Became documented 123# as "/Zo" in VS 2013 Update 3, and is turned on by default in VS 2015. 124CFLAGS_ADD = $(CFLAGS_ADD) /d2Zi+ 125!endif 126!else 127CFLAGS_ADD = /MDd /Od 128!endif 129 130!if "$(PLAT)" == "x64" 131LDFLAGS_ARCH = /machine:x64 132!elseif "$(PLAT)" == "arm" 133LDFLAGS_ARCH = /machine:arm 134CFLAGS_ADD = $(CFLAGS_ADD) /DWINAPI_FAMILY=3 135!else 136LDFLAGS_ARCH = /machine:x86 137!endif 138 139!if "$(VALID_CFGSET)" == "TRUE" 140CFLAGS = $(CFLAGS_ADD) /W3 /Zi 141 142!if "$(ADDITIONAL_LIB_DIR)" != "" 143ADDITIONAL_LIB_ARG = /libpath:$(ADDITIONAL_LIB_DIR) 144!endif 145LDFLAGS_BASE = $(LDFLAGS_ARCH) /libpath:$(PREFIX)\lib $(ADDITIONAL_LIB_ARG) /DEBUG 146 147!if "$(CFG)" == "debug" 148LDFLAGS = $(LDFLAGS_BASE) 149ARFLAGS = $(LDFLAGS_ARCH) 150!else 151LDFLAGS = $(LDFLAGS_BASE) /opt:ref /LTCG 152ARFLAGS = $(LDFLAGS_ARCH) /LTCG 153!endif 154!endif 155