summaryrefslogtreecommitdiff
path: root/build/win32/gengir_pango.bat
diff options
context:
space:
mode:
Diffstat (limited to 'build/win32/gengir_pango.bat')
-rw-r--r--build/win32/gengir_pango.bat169
1 files changed, 169 insertions, 0 deletions
diff --git a/build/win32/gengir_pango.bat b/build/win32/gengir_pango.bat
new file mode 100644
index 00000000..f1ca0efa
--- /dev/null
+++ b/build/win32/gengir_pango.bat
@@ -0,0 +1,169 @@
+@echo off
+
+setlocal EnableDelayedExpansion
+
+rem Needed environmental variables:
+rem PLAT: Windows platform-Win32 (i.e. x86) or x64 (i.e. x86-64)
+rem CONF: Configuration Type, Release or Debug
+rem VSVER: Visual C++ version used [9, 10 or 11]
+rem BASEDIR: Where the dependent libraries/headers are located
+rem PKG_CONFIG_PATH: Where the GLib and its dependent pkg-config .pc files can be found
+rem MINGWDIR: Installation path of MINGW GCC, so gcc.exe can be found in %MINGWDIR%\bin.
+
+rem Note that the Python executable/installation and all the runtime dependencies of the
+rem library/libraries need to be in your PATH or %BASEBIN%\bin.
+
+rem Check the environemental variables...
+if /i "%PLAT%" == "Win32" goto PLAT_OK
+if /i "%PLAT%" == "x64" goto PLAT_OK
+if /i "%PLAT%" == "x86" (
+ set PLAT=Win32
+ goto PLAT_OK
+)
+if /i "%PLAT%" == "x86-64" (
+ set PLAT=x64
+ goto PLAT_OK
+)
+goto ERR_PLAT
+
+:PLAT_OK
+if "%VSVER%" == "9" goto VSVER_OK
+if "%VSVER%" == "10" goto VSVER_OK
+if "%VSVER%" == "11" goto VSVER_OK
+goto ERR_VSVER
+:VSVER_OK
+if /i "%CONF%" == "Release" goto CONF_OK
+if /i "%CONF%" == "Debug" goto CONF_OK
+goto ERR_CONF
+:CONF_OK
+if "%BASEDIR%" == "" goto ERR_BASEDIR
+if not exist %BASEDIR% goto ERR_BASEDIR
+
+if "%PKG_CONFIG_PATH%" == "" goto ERR_PKGCONFIG
+if not exist %PKG_CONFIG_PATH%\gobject-2.0.pc goto ERR_PKGCONFIG
+
+if "%MINGWDIR%" == "" goto ERR_MINGWDIR
+if not exist %MINGWDIR%\bin\gcc.exe goto ERR_MINGWDIR
+
+set CC=cl
+set BINDIR=%CD%\vs%VSVER%\%CONF%\%PLAT%\bin
+set INCLUDE=%BASEDIR%\include\glib-2.0;%BASEDIR%\lib\glib-2.0\include;%INCLUDE%
+set LIB=%BINDIR%;%BASEDIR%\lib;%LIB%
+set PATH=%BINDIR%;%BASEDIR%\bin;%PATH%;%MINGWDIR%\bin
+set PYTHONPATH=%BASEDIR%\lib\gobject-introspection;%BINDIR%
+
+echo Setup .bat for generating Pango .gir's...
+
+rem ===============================================================================
+rem Begin setup of pango_gir.bat to create Pango-1.0.gir
+rem (The ^^ is necessary to span the command to multiple lines on Windows cmd.exe!)
+rem ===============================================================================
+
+echo python gen-file-list-pango.py> pango_gir.bat
+echo echo Generating Pango-1.0.gir...>> pango_gir.bat
+echo @echo off>> pango_gir.bat
+echo.>> pango_gir.bat
+rem =================================================================
+rem Setup the command line flags to g-ir-scanner for Pango-1.0.gir...
+rem =================================================================
+echo python %BASEDIR%\bin\g-ir-scanner --verbose -I..\.. ^^>> pango_gir.bat
+echo -I%BASEDIR%\include\glib-2.0 -I%BASEDIR%\lib\glib-2.0\include ^^>> pango_gir.bat
+echo --namespace=Pango --nsversion=1.0 ^^>> pango_gir.bat
+echo --include=GObject-2.0 --include=cairo-1.0 ^^>> pango_gir.bat
+echo --no-libtool --pkg=gobject-2.0 --pkg=cairo --pkg=glib-2.0 --library=pango-1-vs%VSVER% ^^>> pango_gir.bat
+echo --reparse-validate --add-include-path=%BASEDIR%\share\gir-1.0 --add-include-path=. ^^>> pango_gir.bat
+echo --pkg-export pango --warn-all --c-include "pango/pango.h" ^^>> pango_gir.bat
+echo -I..\.. -DG_LOG_DOMAIN=\"Pango\" -DPANGO_ENABLE_BACKEND -DPANGO_ENABLE_ENGINE ^^>> pango_gir.bat
+echo -DSYSCONFDIR=\"/dummy/etc\" -DLIBDIR=\"/dummy/lib\" ^^>> pango_gir.bat
+echo --filelist=pango_list ^^>> pango_gir.bat
+echo -o Pango-1.0.gir>> pango_gir.bat
+echo.>> pango_gir.bat
+
+echo Completed setup of .bat for generating Pango-1.0.gir.
+echo.>> pango_gir.bat
+
+rem =====================================================
+rem Finish setup of pango_gir.bat to create Pango-1.0.gir
+rem =====================================================
+
+rem =========================================================
+rem Note that the .gir for PangoFT2 is not generated here
+rem as FontConfig is not a concept originally meant for Win32
+rem =========================================================
+
+rem ===============================================================================
+rem Begin setup of pango_gir.bat to create PangoCairo-1.0.gir
+rem (The ^^ is necessary to span the command to multiple lines on Windows cmd.exe!)
+rem ===============================================================================
+
+echo echo Generating PangoCairo-1.0.gir...>> pango_gir.bat
+echo.>> pango_gir.bat
+
+rem ======================================================================
+rem Setup the command line flags to g-ir-scanner for PangoCairo-1.0.gir...
+rem ======================================================================
+
+echo python %BASEDIR%\bin\g-ir-scanner --verbose -I..\.. ^^>> pango_gir.bat
+echo -I%BASEDIR%\include\glib-2.0 -I%BASEDIR%\lib\glib-2.0\include -I%BASEDIR%\include ^^>> pango_gir.bat
+echo --namespace=PangoCairo --nsversion=1.0 ^^>> pango_gir.bat
+echo --include=GObject-2.0 --include=cairo-1.0 ^^>> pango_gir.bat
+echo --no-libtool --pkg=gobject-2.0 --pkg=cairo --library=pangocairo-1-vs%VSVER% --library=pango-1-vs%VSVER% ^^>> pango_gir.bat
+echo --reparse-validate --add-include-path=%BASEDIR%\share\gir-1.0 --add-include-path=. ^^>> pango_gir.bat
+echo --pkg-export pangocairo --warn-all --include-uninstalled=./Pango-1.0.gir ^^>> pango_gir.bat
+echo --c-include "pango/pangocairo.h" ^^>> pango_gir.bat
+echo -I..\.. -DG_LOG_DOMAIN=\"Pango\" -DPANGO_ENABLE_BACKEND ^^>> pango_gir.bat
+echo -DPANGO_ENABLE_ENGINE -DSYSCONFDIR=\"/dummy/etc\" -DLIBDIR=\"/dummy/lib\" ^^>> pango_gir.bat
+echo --filelist=pangocairo_list ^^>> pango_gir.bat
+echo -o PangoCairo-1.0.gir>> pango_gir.bat
+echo.>> pango_gir.bat
+
+rem ==========================================================
+rem Finish setup of pango_gir.bat to create PangoCairo-1.0.gir
+rem ==========================================================
+
+rem =======================
+rem Now generate the .gir's
+rem =======================
+CALL pango_gir.bat
+
+rem Clean up the .bat and filelists for generating the .gir files...
+del pango_gir.bat
+del pango_list
+del pangoft_list
+del pangocairo_list
+del pangocairoft_list
+
+rem Now compile the generated .gir files
+%BASEDIR%\bin\g-ir-compiler --includedir=. --debug --verbose Pango-1.0.gir -o Pango-1.0.typelib
+%BASEDIR%\bin\g-ir-compiler --includedir=. --debug --verbose PangoCairo-1.0.gir -o PangoCairo-1.0.typelib
+
+rem Copy the generated .girs and .typelibs to their appropriate places
+
+mkdir ..\..\build\win32\vs%VSVER%\%CONF%\%PLAT%\share\gir-1.0
+move /y *.gir %BASEDIR%\share\gir-1.0\
+
+mkdir ..\..\build\win32\vs%VSVER%\%CONF%\%PLAT%\lib\girepository-1.0
+move /y *.typelib %BASEDIR%\lib\girepository-1.0\
+
+goto DONE
+
+:ERR_PLAT
+echo You need to specify a valid Platform [set PLAT=Win32 or PLAT=x64]
+goto DONE
+:ERR_VSVER
+echo You need to specify your Visual Studio version [set VSVER=9 or VSVER=10 or VSVER=11]
+goto DONE
+:ERR_CONF
+echo You need to specify a valid Configuration [set CONF=Release or CONF=Debug]
+goto DONE
+:ERR_BASEDIR
+echo You need to specify a valid BASEDIR.
+goto DONE
+:ERR_PKGCONFIG
+echo You need to specify a valid PKG_CONFIG_PATH
+goto DONE
+:ERR_MINGWDIR
+echo You need to specify a valid MINGWDIR, where a valid gcc installation can be found.
+goto DONE
+:DONE
+