Подготовка сборки

(cherry picked from commit 5236472160628ecf65b8934cd688738c1eed5561)
This commit is contained in:
Антон
2025-04-07 09:49:17 +03:00
parent 5848ceee3c
commit 51292d1d2e
2 changed files with 25 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <cstdint>
#include <cstdlib>
#include <iostream>
#include <boost/version.hpp>
int main() {
std::cout << "Boost version: " << BOOST_LIB_VERSION << "\n";
return EXIT_SUCCESS;
}