summaryrefslogtreecommitdiff
path: root/src/xpm/README.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-08-29 14:26:27 +0200
committerBram Moolenaar <Bram@vim.org>2012-08-29 14:26:27 +0200
commit18a1b9bd5fa5925a2dc4b702b37ea0217fcb6ea3 (patch)
tree4fcdce9ee055b369c9db1f35ab1de0ccdeffe0bb /src/xpm/README.txt
parentc6c1d8b80236305f7e7b053be8dea63688fa648e (diff)
downloadvim-git-18a1b9bd5fa5925a2dc4b702b37ea0217fcb6ea3.tar.gz
updated for version 7.3.640v7.3.640
Problem: It's not easy to build Vim on Windows with XPM support. Solution: Binary files for 7.3.639. (Sergey Khorev)
Diffstat (limited to 'src/xpm/README.txt')
-rw-r--r--src/xpm/README.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/xpm/README.txt b/src/xpm/README.txt
new file mode 100644
index 000000000..6ec522089
--- /dev/null
+++ b/src/xpm/README.txt
@@ -0,0 +1,23 @@
+This is XPM library compiled for Windows which is intended for use with Vim
+'signs' feature.
+
+Libraries in x86 directory were compiled with MSVC6 and MinGW. Proposed
+commands to compile Vim are:
+
+Any version of MSVC starting from version 6.0:
+nmake -f Make_mvc.mak GUI=yes CSCOPE=yes NETBEANS=yes XPM=e:\hg\xpm\x86
+
+MinGW:
+mingw32-make -f Make_ming.mak GUI=yes CSCOPE=yes XPM=e:/hg/xpm/x86
+
+Microsoft Visual C++ on x64 (tested with versions 2008 and 2010):
+nmake -f Make_mvc.mak GUI=yes CSCOPE=yes XPM=E:\HG\xpm\x64
+
+To test, open some file in Vim and execute commands below:
+:exe 'sign define vimxpm icon='.$VIMRUNTIME.'\\vim32x32.xpm'
+:exe 'sign place 1 line=1 name=vimxpm file='.expand('%:p')
+
+
+See COPYRIGHT for XPM licence.
+
+If you have questions please email sergey.khorev@gmail.com.