/* * PBXStringFromRefType.m * VerpackIt * * Created by Uli Kusterer on 16.09.04. * Copyright 2004 M. Uli Kusterer. All rights reserved. * */ #include "PBXStringFromRefType.h" NSString* PBXStringFromRefType( NSString* refType ) { NSString* refTypes[5] = { @"Absolute Path", @"UNKNOWN REF MODE", @"Relative to Project", @"Relative to Build Product", @"Relative to Enclosing Group" }; int rt = [refType intValue]; if( rt < 0 || rt > 4 ) rt = 1; return refTypes[rt]; } |