Merge pull request #189 from accelerated/fix_versioning

Fixed version macros
This commit is contained in:
Matias Fontanini
2019-05-16 09:21:23 -07:00
committed by GitHub

View File

@@ -3,8 +3,9 @@ project(cppkafka)
# Set the version number.
set(CPPKAFKA_VERSION_MAJOR 0)
set(CPPKAFKA_VERSION_MINOR 2)
set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}")
set(CPPKAFKA_VERSION_MINOR 3)
set(CPPKAFKA_VERSION_REVISION 1)
set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}.${CPPKAFKA_VERSION_REVISION}")
set(RDKAFKA_MIN_VERSION 0x00090400)
if (NOT CMAKE_CXX_FLAGS)