2010-07-23 00:46:45 +00:00
|
|
|
//
|
2012-03-21 05:12:23 +00:00
|
|
|
// Copyright 2010-2012 Ettus Research LLC
|
2010-07-23 00:46:45 +00:00
|
|
|
//
|
2017-12-22 17:45:24 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2010-07-23 00:46:45 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include <uhd/version.hpp>
|
2010-10-01 19:11:38 +00:00
|
|
|
#include <uhd/utils/static.hpp>
|
2017-02-08 00:37:25 +00:00
|
|
|
#include <uhd/utils/log.hpp>
|
2010-10-01 19:11:38 +00:00
|
|
|
#include <boost/version.hpp>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
2011-07-22 20:59:29 +00:00
|
|
|
std::string uhd::get_version_string(void){
|
2012-02-28 17:17:26 +00:00
|
|
|
return "@UHD_VERSION@";
|
2011-07-22 20:59:29 +00:00
|
|
|
}
|
2012-03-21 05:12:23 +00:00
|
|
|
|
|
|
|
|
std::string uhd::get_abi_string(void){
|
|
|
|
|
return UHD_VERSION_ABI_STRING;
|
|
|
|
|
}
|