forked from XLuma/retsam_00jupc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env
32 lines (27 loc) · 1.24 KB
/
env
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
29
30
31
32
export PATH="$PWD/tools/make:$PWD/tools/ruby:$PWD/tools/nnsarc:$PWD/tools/fixrom:$PATH"
export NITROSDK_ROOT="$PWD/sdk/NitroSDK"
export NITROSYSTEM_ROOT="$PWD/sdk/NitroSystem"
export NITROWIFI_ROOT="$PWD/sdk/NitroWiFi"
export NITRODWC_ROOT="$PWD/sdk/NitroDWC"
export NITROVCT_ROOT="$PWD/sdk/libVCT"
export NITROLIBVCT_ROOT="$PWD/sdk/libVCT"
export CWFOLDER_NITRO="$PWD/sdk/cw"
if [ "$OS" != 'Windows_NT' ] && $(grep -q Microsoft /proc/version); then
export LM_LICENSE_FILE="$(wslpath -m "$CWFOLDER_NITRO/license.dat")"
else
export LM_LICENSE_FILE="$CWFOLDER_NITRO/license.dat"
fi
export IS_NITRO_DIR="$PWD/sdk/isdbg"
export WINEDLLOVERRIDES="winemenubuilder.exe=d;mscoree,mshtml="
export WINEARCH=win32
export WINEPREFIX="$PWD/.wineprefix"
if [ "$OS" = 'Windows_NT' ]; then
export NITROSDK_ROOT="$(cygpath -w "$NITROSDK_ROOT")"
export NITROSYSTEM_ROOT="$(cygpath -w "$NITROSYSTEM_ROOT")"
export NITROWIFI_ROOT="$(cygpath -w "$NITROWIFI_ROOT")"
export NITRODWC_ROOT="$(cygpath -w "$NITRODWC_ROOT")"
export NITROLIBVCT_ROOT="$(cygpath -w "$NITROLIBVCT_ROOT")"
export CWFOLDER_NITRO="$(cygpath -w "$CWFOLDER_NITRO")"
export LM_LICENSE_FILE="$(cygpath -w "$LM_LICENSE_FILE")"
export IS_NITRO_DIR="$(cygpath -w "$IS_NITRO_DIR")"
fi