1 #include <iostream> 2 #include <string> 3 4 #include "sharedlibstest.h" 5 6 // This parameter gets modified by the build_artifacts.sh script. 7 #define FINGERPRINT "VERSION_XXX" 8 main()9int main() { 10 std::cout << "BAZ_" << FINGERPRINT << " " 11 << sharedlibstest::getSharedLibsTestFingerprint(); 12 return 0; 13 } 14