Navigation Menu

Skip to content

Commit

Permalink
Add Xcode project
Browse files Browse the repository at this point in the history
  • Loading branch information
akimach committed Nov 14, 2016
1 parent c4cf537 commit 4fdfbda
Show file tree
Hide file tree
Showing 9 changed files with 505 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Package.swift
@@ -0,0 +1,5 @@
import PackageDescription

let package = Package(
name: "SwiftNaiveBayes"
)
4 changes: 4 additions & 0 deletions Sources/SwiftNaiveBayes.swift
@@ -0,0 +1,4 @@
struct SwiftNaiveBayes {

var text = "Hello, World!"
}
25 changes: 25 additions & 0 deletions SwiftNaiveBayes.xcodeproj/SwiftNaiveBayesTests_Info.plist
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
25 changes: 25 additions & 0 deletions SwiftNaiveBayes.xcodeproj/SwiftNaiveBayes_Info.plist
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

0 comments on commit 4fdfbda

Please sign in to comment.