Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
luosheng committed Nov 9, 2015
0 parents commit 4320cea
Show file tree
Hide file tree
Showing 18 changed files with 1,449 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Created by https://www.gitignore.io/api/swift

### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata

## Other
*.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

302 changes: 302 additions & 0 deletions OpenSim.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,302 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
B3A1E3231BF049690090EC58 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A1E3221BF049690090EC58 /* AppDelegate.swift */; };
B3A1E3251BF049690090EC58 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B3A1E3241BF049690090EC58 /* Assets.xcassets */; };
B3A1E3281BF049690090EC58 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = B3A1E3261BF049690090EC58 /* MainMenu.xib */; };
B3A1E3301BF05F980090EC58 /* DeviceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A1E32F1BF05F980090EC58 /* DeviceManager.swift */; };
B3A1E3321BF062C40090EC58 /* Device.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A1E3311BF062C40090EC58 /* Device.swift */; };
B3A1E3341BF0709A0090EC58 /* URLHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A1E3331BF0709A0090EC58 /* URLHelper.swift */; };
B3CB09581BF0D5950023C3E0 /* ApplicationState.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3CB09571BF0D5950023C3E0 /* ApplicationState.swift */; };
B3CB095A1BF0D9890023C3E0 /* DeviceApplicationPair.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3CB09591BF0D9890023C3E0 /* DeviceApplicationPair.swift */; };
B3F493A61BF0822800C64FF0 /* Application.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3F493A51BF0822800C64FF0 /* Application.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
B3A1E31F1BF049690090EC58 /* OpenSim.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpenSim.app; sourceTree = BUILT_PRODUCTS_DIR; };
B3A1E3221BF049690090EC58 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
B3A1E3241BF049690090EC58 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
B3A1E3271BF049690090EC58 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
B3A1E3291BF049690090EC58 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B3A1E32F1BF05F980090EC58 /* DeviceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeviceManager.swift; sourceTree = "<group>"; };
B3A1E3311BF062C40090EC58 /* Device.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Device.swift; sourceTree = "<group>"; };
B3A1E3331BF0709A0090EC58 /* URLHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = URLHelper.swift; sourceTree = "<group>"; };
B3CB09571BF0D5950023C3E0 /* ApplicationState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplicationState.swift; sourceTree = "<group>"; };
B3CB09591BF0D9890023C3E0 /* DeviceApplicationPair.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeviceApplicationPair.swift; sourceTree = "<group>"; };
B3F493A51BF0822800C64FF0 /* Application.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Application.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
B3A1E31C1BF049690090EC58 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
B3A1E3161BF049690090EC58 = {
isa = PBXGroup;
children = (
B3A1E3211BF049690090EC58 /* OpenSim */,
B3A1E3201BF049690090EC58 /* Products */,
);
sourceTree = "<group>";
};
B3A1E3201BF049690090EC58 /* Products */ = {
isa = PBXGroup;
children = (
B3A1E31F1BF049690090EC58 /* OpenSim.app */,
);
name = Products;
sourceTree = "<group>";
};
B3A1E3211BF049690090EC58 /* OpenSim */ = {
isa = PBXGroup;
children = (
B3A1E3221BF049690090EC58 /* AppDelegate.swift */,
B3F493A51BF0822800C64FF0 /* Application.swift */,
B3CB09571BF0D5950023C3E0 /* ApplicationState.swift */,
B3A1E3311BF062C40090EC58 /* Device.swift */,
B3CB09591BF0D9890023C3E0 /* DeviceApplicationPair.swift */,
B3A1E32F1BF05F980090EC58 /* DeviceManager.swift */,
B3A1E3331BF0709A0090EC58 /* URLHelper.swift */,
B3A1E3241BF049690090EC58 /* Assets.xcassets */,
B3A1E3261BF049690090EC58 /* MainMenu.xib */,
B3A1E3291BF049690090EC58 /* Info.plist */,
);
name = OpenSim;
path = OpenSim;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
B3A1E31E1BF049690090EC58 /* OpenSim */ = {
isa = PBXNativeTarget;
buildConfigurationList = B3A1E32C1BF049690090EC58 /* Build configuration list for PBXNativeTarget "OpenSim" */;
buildPhases = (
B3A1E31B1BF049690090EC58 /* Sources */,
B3A1E31C1BF049690090EC58 /* Frameworks */,
B3A1E31D1BF049690090EC58 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = OpenSim;
productName = OpenSim;
productReference = B3A1E31F1BF049690090EC58 /* OpenSim.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
B3A1E3171BF049690090EC58 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0710;
LastUpgradeCheck = 0710;
ORGANIZATIONNAME = "Luo Sheng";
TargetAttributes = {
B3A1E31E1BF049690090EC58 = {
CreatedOnToolsVersion = 7.1;
};
};
};
buildConfigurationList = B3A1E31A1BF049690090EC58 /* Build configuration list for PBXProject "OpenSim" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = B3A1E3161BF049690090EC58;
productRefGroup = B3A1E3201BF049690090EC58 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
B3A1E31E1BF049690090EC58 /* OpenSim */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
B3A1E31D1BF049690090EC58 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B3A1E3251BF049690090EC58 /* Assets.xcassets in Resources */,
B3A1E3281BF049690090EC58 /* MainMenu.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
B3A1E31B1BF049690090EC58 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B3CB09581BF0D5950023C3E0 /* ApplicationState.swift in Sources */,
B3F493A61BF0822800C64FF0 /* Application.swift in Sources */,
B3A1E3321BF062C40090EC58 /* Device.swift in Sources */,
B3CB095A1BF0D9890023C3E0 /* DeviceApplicationPair.swift in Sources */,
B3A1E3341BF0709A0090EC58 /* URLHelper.swift in Sources */,
B3A1E3301BF05F980090EC58 /* DeviceManager.swift in Sources */,
B3A1E3231BF049690090EC58 /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
B3A1E3261BF049690090EC58 /* MainMenu.xib */ = {
isa = PBXVariantGroup;
children = (
B3A1E3271BF049690090EC58 /* Base */,
);
name = MainMenu.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
B3A1E32A1BF049690090EC58 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
B3A1E32B1BF049690090EC58 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
};
name = Release;
};
B3A1E32D1BF049690090EC58 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = OpenSim/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.pop-tap.OpenSim";
PRODUCT_NAME = OpenSim;
};
name = Debug;
};
B3A1E32E1BF049690090EC58 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = OpenSim/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.pop-tap.OpenSim";
PRODUCT_NAME = OpenSim;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
B3A1E31A1BF049690090EC58 /* Build configuration list for PBXProject "OpenSim" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B3A1E32A1BF049690090EC58 /* Debug */,
B3A1E32B1BF049690090EC58 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
B3A1E32C1BF049690090EC58 /* Build configuration list for PBXNativeTarget "OpenSim" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B3A1E32D1BF049690090EC58 /* Debug */,
B3A1E32E1BF049690090EC58 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = B3A1E3171BF049690090EC58 /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4320cea

Please sign in to comment.