blob: d1639efbe465c78e940e98614283b963fff3f010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/bash
# -----------------------------------------------------------------------------
# The paths in this file are used if you want to build Inkscape from the
# the MSYS command line for Windows.
# -----------------------------------------------------------------------------
# Directory containing the precompiled Inkscape libraries. Usually /c/devlibs or /c/devlibs64
if [ -z $DEVLIBS_PATH ]; then
export DEVLIBS_PATH="/c/devlibs64";
fi
# Directory containing the MinGW instance used for compilation. Usually /c/mingw or /c/mingw64
# Note: Make sure there are no whitespaces in the path. MinGW doesn't like that.. :)
if [ -z $MINGW_PATH ]; then
export MINGW_PATH="/c/mingw64";
fi
# -----------------------------------------------------------------------------
echo Setting environment variables for MSYS build of Inkscape:
echo
echo "DEVLIBS_PATH: "$DEVLIBS_PATH
echo "MINGW_PATH: "$MINGW_PATH
# Include the MinGW environment in the path to prevent error messages during CMake configure.
export PATH=$DEVLIBS_PATH/bin:$DEVLIBS_PATH/python:$MINGW_PATH/bin:$PATH
# Also set the pkgconfig path to prevent error messages during CMake configure.
export PKG_CONFIG_PATH=$DEVLIBS_PATH/lib/pkgconfig
|