You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Robin Mills 5f6ef65695 Update PROJECT_VERSION & add install() commands for CPack
- Version updated to 0.27.0.1.
- Release notes for MacOS-X Package, Linux, CYGWIN, win64 and msvc
- Redmine Release Notes Updated.
7 years ago
..
ReadMe.txt Update PROJECT_VERSION & add install() commands for CPack 7 years ago

ReadMe.txt

MSVC 2017 Release DLL Bundle
----------------------------

Structure of the bundle:
------------------------

bin/exiv2                                 exiv2 and sample applications
bin/libexiv2.dll and libcurl.dll          dlls
include/exiv2/                            include files
lib/exiv2.lib (and xmp.lib)               link libraries
share/                                    man pages
samples/                                  sample code
contrib/Qt                                Qt code and notes
samples/exifprint.cpp                     sample code

ReadMe.txt                                This file
license.txt                               GPLv2.0 Software License
releasenotes.txt
README-CMAKE.md
README.md
README-CONAN.md

+----------------------------------------------------------------------------+
| Caution: Use a Windows unzip utility such as 7z or winzip                  |
| Cygwin unzip utilities can result in incorrect security with bin/exiv2.dll |
+----------------------------------------------------------------------------+

To run exiv2.exe from the bundle:
c:\temp> cd <exiv2-0.27.0.1-msvc>\bin
c:\temp\exiv2-0.27.0.1-msvc\bin> exiv2

Add the bin to your PATH:
c:\temp\exiv2-0.27.0.1-msvc\bin>set PATH=%CD%;%PATH%


To compile and link your own code:

+----------------------------------------------------------------------------+
| Caution: You must use the same version of Visual Studio as the build       |
|          You will need to use the "Visual Studio Command Prompt"           |
|          or initialise the DOS environment by calling vcvarsall.bat        |
+----------------------------------------------------------------------------+

c:\temp> cd exiv2-0.27.0.1-msvc
c:\temp\exiv2-0.27.0.1-msvc> cl /EHsc -Iinclude /MD samples\exifprint.cpp /link lib\exiv2.lib
c:\temp\exiv2-0.27.0.1-msvc> exifprint --version
exiv2=0.27.0
...
xmlns=xmpidq:http://ns.adobe.com/xmp/Identifier/qual/1.0/
c:\temp\exiv2-0.27.0.1-msvc>