blob: b832f68bafaf8eef1a00fab108d5822ae39dc42d [file] [log] [blame]
//===-- Version.cpp -------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "llbuild/Basic/Version.h"
#include <string>
namespace llbuild {
std::string getLLBuildFullVersion(StringRef productName) {
std::string result = productName.str() + " version 3.0";
// Include the additional build version information, if present.
#ifdef LLBUILD_VENDOR_STRING
result = std::string(LLBUILD_VENDOR_STRING) + " " + result;
#endif
#ifdef LLBUILD_VERSION_STRING
result = result + " (" + std::string(LLBUILD_VERSION_STRING) + ")";
#endif
return result;
}
}