2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/compiler-checks/get-boost-version.cc

8 lines
123 B
C++
Raw Normal View History

#include <boost/version.hpp>
#include <iostream>
int main() {
std::cout << BOOST_LIB_VERSION << "\n";
return 0;
}