svn_version handling dummy for MSVC (I'll deal with MSVC later).
This commit is contained in:
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…
Reference in New Issue
Block a user