14 lines
304 B
C++
14 lines
304 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "sharedlibstest.h"
|
|
|
|
// This parameter gets modified by the build_artifacts.sh script.
|
|
#define FINGERPRINT "VERSION_XXX"
|
|
|
|
int main() {
|
|
std::cout << "PONY_" << FINGERPRINT << " "
|
|
<< sharedlibstest::getSharedLibsTestFingerprint();
|
|
return 0;
|
|
}
|