Export: Use the CMAKE_DEVEL_VERSION macro for build-export files.

Move the macro definition to the cmExportBuildFileGenerator.h header
to share it.
This commit is contained in:
Stephen Kelly
2014-02-11 16:31:53 +01:00
parent 9bcc1b21f0
commit 6ca6613ab8
3 changed files with 16 additions and 15 deletions
+15
View File
@@ -15,6 +15,21 @@
#include "cmCommand.h"
#include "cmGeneratorExpression.h"
#include "cmVersionMacros.h"
#include "cmVersion.h"
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
#define DEVEL_CMAKE_VERSION(maj, min, patch) \
(CMake_VERSION_ENCODE(maj, min, patch) > \
CMake_VERSION_ENCODE(CMake_VERSION_MAJOR, CMake_VERSION_MINOR, \
CMake_VERSION_PATCH) \
) ? \
STRINGIFY(CMake_VERSION_MAJOR) "." STRINGIFY(CMake_VERSION_MINOR) "." \
STRINGIFY(CMake_VERSION_PATCH) "." STRINGIFY(CMake_VERSION_TWEAK) \
: #maj "." #min "." #patch
class cmTargetExport;
/** \class cmExportFileGenerator