PIKApp/build/windows/installer/directories.isi

76 lines
1.4 KiB
Plaintext

//directories to source files from
#if !defined(VERSION)
#error "VERSION must be defined"
#endif
#define public
#if !defined(VER_DIR)
#if defined(REVISION)
#define VER_DIR VERSION + "-" + REVISION
#else
#define VER_DIR VERSION
#endif
#endif
#ifndef DIR32
#define DIR32 "i686-w64-mingw32"
#endif
#ifndef DIR64
#define DIR64 "x86_64-w64-mingw32"
#endif
#ifndef DIRA64
#define DIRA64 "aarch64-w64-mingw32"
#endif
#ifndef PIKA_DIR
#define PIKA_DIR "N:\pika\output\" + VER_DIR
#endif
#ifndef DEPS_DIR
#define DEPS_DIR "N:\pika\deps"
#endif
//32-bit PIKA base directory (result of make install)
#ifndef PIKA_DIR32
#define PIKA_DIR32 PIKA_DIR + "\" + DIR32
#endif
//64-bit PIKA base directory (result of make install)
#ifndef PIKA_DIR64
#define PIKA_DIR64 PIKA_DIR + "\" + DIR64
#endif
//AArch64 PIKA base directory (result of make install)
#ifndef PIKA_DIRA64
#define PIKA_DIRA64 PIKA_DIR + "\" + DIR64
#endif
#ifndef DDIR32
#define DDIR32 DIR32
#endif
#ifndef DDIR64
#define DDIR64 DIR64
#endif
#ifndef DDIRA64
#define DDIRA64 DIRA64
#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
//AArch64 dependencies directory
#ifndef DEPS_DIR64
#define DEPS_DIRA64 DEPS_DIR + "\" + DDIRA64
#endif
#ifdef PYTHON
//python source directory
#ifndef PY_DIR
#define PY_DIR "N:\common\python2.7"
#endif
#endif