mirror of
https://github.com/Xahau/xahaud.git
synced 2026-01-13 11:15:16 +00:00
* Make xrpld target optional * Add job to test Conan recipe * [fold] address review comments * [fold] Enable tests in workflows * [fold] Rename with_xrpld option * [fold] Fix grep expression
9 lines
185 B
C++
9 lines
185 B
C++
#include <cstdio>
|
|
|
|
#include <xrpl/protocol/BuildInfo.h>
|
|
|
|
int main(int argc, char const** argv) {
|
|
std::printf("%s\n", ripple::BuildInfo::getVersionString().c_str());
|
|
return 0;
|
|
}
|