svn_version handling dummy for MSVC (I'll deal with MSVC later).

v0.27.3
Robin Mills 11 years ago
parent b6db775109
commit 501fadcdd6

@ -13,5 +13,5 @@ if [ ! -e svn_version.h ]; then
echo "#define SVN_VERSION $svn_version" > svn_version.h
fi
# That's All Folks!
# That's all Folks!
##

@ -37,7 +37,12 @@
// + standard includes
#include <string>
// svn version has not been implemented yet for DevStudio
#if defined(_MSC_VER)
#define SVN_VERSION 0
#else
#include "svn_version.h"
#endif
/*!
@brief %Exiv2 MAJOR version number of the library used at compile-time.

Loading…
Cancel
Save