diff options
author | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 02:21:24 +0900 |
---|---|---|
committer | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 02:21:24 +0900 |
commit | c6b9e84f2f7f8c85939a8e5ff5d8a5aa067cecf3 (patch) | |
tree | 1436172370a45714687122f914354ad167a2f528 /README.win32 | |
parent | f7d643cbb2184346b6f8d26091eb7eb38c6bbfe1 (diff) | |
download | pygobject2-tizen_2.1.tar.gz pygobject2-tizen_2.1.tar.bz2 pygobject2-tizen_2.1.zip |
Tizen 2.1 basesubmit/tizen_2.1/20130425.060530submit/tizen_2.1/20130424.235900submit/tizen/20130517.051955accepted/tizen_2.1/20130425.021253accepted/tizen/20130520.1018302.1b_releasetizen_2.1
Diffstat (limited to 'README.win32')
-rw-r--r-- | README.win32 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/README.win32 b/README.win32 new file mode 100644 index 0000000..548a3c8 --- /dev/null +++ b/README.win32 @@ -0,0 +1,24 @@ +Windows Setuptools Build Instructions +====================================== + + 1. Install gtk+ bundle from gtk.org (to C:\GTK for example) + 2. Install Python2.6 + 3. Install MinGW and MSYS + 4. Add C:\GTK\bin to path (from windows) + 5. Add the following to your msys environment variables + (open and append to C:\msys\1.0\etc\profile) or set for the session + + $ export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/c/GTK/lib/pkgconfig:/c/Python26/Lib/pkgconfig + $ export PATH=$PATH:/c/Python26:/c/Python26/bin + + 6. In msys shell, build with + + $ python setup.py build --compiler=mingw32 --enable-threading \ + --yes-i-know-its-not-supported bdist_wininst + +Tested with + * gtk+-bundle_2.20.0-20100406_win32.zip + * MinGW-5.16.exe + * MSYS-1.0.11.exe + * python-2.6.5.exe + |