1 //===- tools/dsymutil/CFBundle.h - CFBundle helper --------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TOOLS_DSYMUTIL_CFBUNDLE_H
10 #define LLVM_TOOLS_DSYMUTIL_CFBUNDLE_H
12 #include "llvm/ADT/StringRef.h"
19 std::string VersionStr
= "1";
20 std::string ShortVersionStr
= "1.0";
22 bool OmitShortVersion() const { return ShortVersionStr
.empty(); }
25 CFBundleInfo
getBundleInfo(llvm::StringRef ExePath
);
27 } // end namespace dsymutil
28 } // end namespace llvm