diff options
author | Nicolas Cuervo <nicolas.cuervo@ettus.com> | 2016-07-31 20:35:45 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-01 18:39:54 -0700 |
commit | b448bb331a3a09bc395d38ee8e1261b209872ba6 (patch) | |
tree | 799a2006b980a7e9d5ff856f97f753e7162339e1 /host/include | |
parent | dbbda210c2f9a0e28850b5983e40e3c1e19d2b22 (diff) | |
download | uhd-b448bb331a3a09bc395d38ee8e1261b209872ba6.tar.gz uhd-b448bb331a3a09bc395d38ee8e1261b209872ba6.tar.bz2 uhd-b448bb331a3a09bc395d38ee8e1261b209872ba6.zip |
cmake: Fix compatibility with new versioning scheme
- Fixes init_usrp
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/version.hpp.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/version.hpp.in b/host/include/uhd/version.hpp.in index bfa0b904a..85c0aac9f 100644 --- a/host/include/uhd/version.hpp.in +++ b/host/include/uhd/version.hpp.in @@ -31,7 +31,7 @@ /*! * A macro to check UHD version at compile-time. - * The value of this macro is MAJOR * 10000 + MINOR * 100 + PATCH + * The value of this macro is MAJOR * 1000000 + API * 10000 + ABI * 100 + PATCH * (e.g., for UHD 3.8.1 this is 30801). */ #cmakedefine UHD_VERSION @UHD_VERSION_ADDED@ |