diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-04 14:48:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-04 14:48:00 +0200 |
commit | f159b1dac68c8714f7ba71ca168e3b695891aad9 (patch) | |
tree | 95dbc4b3f9a5f80f15e288fe4cd64af1f5ce8252 /build | |
parent | d519607a0d8e7ba64f6f5d5362ab922afd70c8be (diff) |
First step in migrating 'build' to 'build2'
Diffstat (limited to 'build')
-rw-r--r-- | build/version | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/build/version b/build/version index 6b56926..96a9274 100644 --- a/build/version +++ b/build/version @@ -2,7 +2,7 @@ // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file -#ifndef BUILD_VERSION // Note: using the version macro itself. +#ifndef BUILD2_VERSION // Note: using the version macro itself. #include <butl/version> // LIBBUTL_VERSION @@ -22,19 +22,21 @@ // 2.2.0-a1 02019901 // 3.0.0-b2 02999952 // -// AABBCCDD -#define BUILD_VERSION 10000 -#define BUILD_VERSION_STR "0.1.0" +#define BUILD2_VERSION 10000 +#define BUILD2_VERSION_STR "0.1.0" + +//@@ TMP +// +#define BUILD_VERSION BUILD2_VERSION +#define BUILD_VERSION_STR BUILD2_VERSION_STR // Generally, we expect minor versions to be source code backwards- // compatible, thought we might have a minimum version requirement. // // Note: does not apply during early development. // -// AABBCCDD -#if (LIBBUTL_VERSION < 10000 || \ - LIBBUTL_VERSION > 10000) +#if LIBBUTL_VERSION != 10000 # error incompatible libbutl version #endif -#endif // BUILD_VERSION +#endif // BUILD2_VERSION |