Actions
Building on Windows Using Cygwin¶
*Last revision on which this method was tested: r3288
*Operating Systems on which this method was tested: Windows7 Professional and Home-Premium 64bit
- Install
cygwin (64-bit)
orcygwin (32-bit)
- Choose the following packages: autoconf, clang (optional), cmake, dos2unix, gcc, getext-devel, libexpat-devel, make, pkg-config, subversion, zlib-devel
- Install the selected packages
- Open
Cygwin Terminal
- Download latest source code
svn checkout svn://dev.exiv2.org/svn/trunk
- Build using Automake
cd trunk make config ./configure #if you are using clang, then do: ./configure CC=clang CXX=clang++ make make install export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig make samples make tests
- Build using CMake
cd trunk make config mkdir build cd build cmake ../ #if you are using clang, then do: CC=clang CXX=clang++ cmake .. make make install make tests
- Download latest source code
Updated by Nehal J Wani over 7 years ago ยท 8 revisions