Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/cygwin_profile
diff options
context:
space:
mode:
authorBernie Innocenti <bernie@codewiz.org>2010-05-03 21:53:47 (GMT)
committer Bernie Innocenti <bernie@codewiz.org>2010-05-03 21:53:47 (GMT)
commit1030dc837b10a03a02a85d5504cbeec168ce49e2 (patch)
tree698eefa87ac437deaf36a4141b326f8ce7986692 /tools/cygwin_profile
Import XaoS r489 (trunk after version 3.5)
Diffstat (limited to 'tools/cygwin_profile')
-rw-r--r--tools/cygwin_profile35
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/cygwin_profile b/tools/cygwin_profile
new file mode 100644
index 0000000..9c5e768
--- /dev/null
+++ b/tools/cygwin_profile
@@ -0,0 +1,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