forked from ferkulat/csv2xls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.TXT
46 lines (28 loc) · 1022 Bytes
/
INSTALL.TXT
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
36
37
38
39
40
41
42
43
44
45
46
=========== Building ==============
-= Prequisites =-
xlslib: http://sourceforge.net/projects/xlslib/
libcsv: http://sourceforge.net/projects/libcsv/
-= Compile =-
./configure
make
-= Install =-
If 'PREFIX' is not set by configure parameter, the binary will get installed in
/usr/local/bin.
make install
or to install a stripped (w/o debugging symbols -> smaller) binary do
make install-strip
-= Windows (MinGW) =-
You need MinGW installed. Make sure you enable 'C++' and 'MSYS' during
installation process.
Not to forget: You will need to compile and install libcsv and xlslib
before compiling csv2xls.
Then follow this example by changing the paths to your needs:
We assume this folder is unzipped and its path is 'C:\csv2xls-0.0.0'.
Open MSYS console and type
cd /C/csv2xls-0.0.0
./configure
make
make install-strip
The 'csv2xls.exe' will be installed in 'C:\MinGW\msys\1.0\local\bin'.
It will be a static compiled binary which you can copy/move into
a path of your choice.