Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/cygwin_profile
blob: 9c5e768bf1af78326e3233ca004019e9b829ea5f (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
29
30
31
32
33
34
35
## .bash_profile for XaoS Cygwin build environment
##
## IMPORTANT! Please modify the lines below to point to the location where you 
## have installed each package.  Note that paths are written with forward 
## slashes rather than backslashes and that drive letters are written like
## "/c" instead of "c:".
#############################################################################

GNUWIN32_HOME='/cygdrive/c/Program Files/GnuWin32'
HTMLHELP_HOME='/cygdrive/c/Program Files/HTML Help Workshop'
DIRECTX_HOME='/cygdrive/c/Program Files/Microsoft DirectX SDK (March 2009)'
PTHREADS_HOME='/cygdrive/c/pthreads-w32'

#############################################################################
## You should not have to modify anything below this line

# GnuWin32
PATH=$PATH:$GNUWIN32_HOME/bin
C_INCLUDE_PATH=$C_INCLUDE_PATH:$GNUWIN32_HOME/include
LIBRARY_PATH=$LIBRARY_PATH:$GNUWIN32_HOME/lib

# HTML Help Workshop
PATH=$PATH:$HTMLHELP_HOME
C_INCLUDE_PATH=$C_INCLUDE_PATH:$HTMLHELP_HOME/include
LIBRARY_PATH=$LIBRARY_PATH:$HTMLHELP_HOME/lib

# DirectX SDK
C_INCLUDE_PATH=$C_INCLUDE_PATH:$DIRECTX_HOME/include

# Pthreads
PATH=$PATH:$PTHREADS_HOME/Pre-built.2/lib
C_INCLUDE_PATH=$C_INCLUDE_PATH:$PTHREADS_HOME/Pre-built.2/include
LIBRARY_PATH=$LIBRARY_PATH:$PTHREADS_HOME/Pre-built.2/lib

export PATH C_INCLUDE_PATH LIBRARY_PATH