Blame releasenotes/msvc/ReadMe.txt

Packit Service 21b5d1
Visual Studio 2017 Release DLL v0.27.2 Bundle
Packit Service 21b5d1
-------------------------------------------------
Packit Service 21b5d1
Packit Service 21b5d1
Structure of the bundle:
Packit Service 21b5d1
------------------------
Packit Service 21b5d1
Packit Service 21b5d1
bin/exiv2.exe                                 exiv2 and sample applications
Packit Service 21b5d1
bin/exiv2.dll                                 dll
Packit Service 21b5d1
lib/exiv2.lib & exiv2-xmp.lib                 link libraries
Packit Service 21b5d1
lib/cmake/exiv2                               CMake support/consume files
Packit Service 21b5d1
include/exiv2/                                include files
Packit Service 21b5d1
samples/exifprint.cpp                         sample code
Packit Service 21b5d1
logs/                                         build and test logs
Packit Service 21b5d1
Packit Service 21b5d1
ReadMe.txt                                    This file
Packit Service 21b5d1
license.txt                                   GPLv2.0 Software License
Packit Service 21b5d1
releasenotes.txt                              Late breaking news
Packit Service 21b5d1
README.md                                     Developer Manual
Packit Service 21b5d1
README-CONAN.md                               Developer Manual Appendix
Packit Service 21b5d1
README-SAMPLES.md                             Developer Sample Code Manual
Packit Service 21b5d1
exiv2.png                                     Exiv2 Logo
Packit Service 21b5d1
Packit Service 21b5d1
+----------------------------------------------------------------------------+
Packit Service 21b5d1
| Caution: Use a Windows unzip utility such as 7z or winzip                  |
Packit Service 21b5d1
| Cygwin unzip utilities can result in incorrect security with bin/exiv2.dll |
Packit Service 21b5d1
+----------------------------------------------------------------------------+
Packit Service 21b5d1
Packit Service 21b5d1
To run exiv2.exe from the bundle:
Packit Service 21b5d1
c:\> cd <bundle>\bin
Packit Service 21b5d1
<bundle>\bin> exiv2
Packit Service 21b5d1
Packit Service 21b5d1
Add the bin to your PATH:
Packit Service 21b5d1
c:\> cd <bundle>\bin
Packit Service 21b5d1
<bundle>\bin>set PATH=%CD%;%PATH%
Packit Service 21b5d1
Packit Service 21b5d1
To compile and link your own code:
Packit Service 21b5d1
Packit Service 21b5d1
+-------------------------------------------------------------------------------+
Packit Service 21b5d1
| Caution: You must use the same version of Visual Studio as the build          |
Packit Service 21b5d1
|          You will need to use the "Visual Studio Command Prompt"              |
Packit Service 21b5d1
|          or initialise the DOS environment by calling vcvarsall.bat           |
Packit Service 21b5d1
| C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64>vcvars64.bat |
Packit Service 21b5d1
+-------------------------------------------------------------------------------+
Packit Service 21b5d1
Packit Service 21b5d1
c:\> cd <bundle>
Packit Service 21b5d1
<bundle>> cl /EHsc -Iinclude /MD samples\exifprint.cpp /link lib\exiv2.lib
Packit Service 21b5d1
<bundle>> exifprint --version
Packit Service 21b5d1
<bundle>>