Installer: forgot a few things for GIMP/deps split

This commit is contained in:
Jernej Simončič 2018-05-02 01:38:53 +02:00
parent 770f596c6e
commit d981c930c5
1 changed files with 14 additions and 2 deletions

View File

@ -23,6 +23,9 @@
#ifndef GIMP_DIR
#define GIMP_DIR "N:\gimp\output\" + VER_DIR
#endif
#ifndef DEPS_DIR
#define DEPS_DIR "N:\gimp\deps"
#endif
//32-bit GIMP base directory (result of make install)
#ifndef GIMP_DIR32
@ -34,10 +37,19 @@
#endif
#ifndef DDIR32
#define DDIR32 DIR32 + "-w64-mingw32\sys-root\mingw"
#define DDIR32 DIR32
#endif
#ifndef DDIR64
#define DDIR64 DIR64 + "-w64-mingw32\sys-root\mingw"
#define DDIR64 DIR64
#endif
//32-bit dependencies directory
#ifndef DEPS_DIR32
#define DEPS_DIR32 DEPS_DIR + "\" + DDIR32
#endif
//64-bit dependencies directory
#ifndef DEPS_DIR64
#define DEPS_DIR64 DEPS_DIR + "\" + DDIR64
#endif
#ifdef PYTHON