Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

ITK_graphicslib.xcodeproj/xcuserdata/okocsis.xcuserdatad/xcschemes/Beadando_1.xcscheme

ITK_graphicslib.xcodeproj/xcuserdata/okocsis.xcuserdatad/xcschemes/xcschememanagement.plist

.DS_Store

ITK_graphicslib.xcodeproj/project.xcworkspace/xcuserdata/okocsis.xcuserdatad/UserInterfaceState.xcuserstate

ITK_graphicslib.xcodeproj/xcuserdata/okocsis.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist

ITK_graphicslib.xcodeproj/xcuserdata/okocsis.xcuserdatad/xcschemes/probaApp.xcscheme

ITK_graphicslib.xcodeproj/project.xcworkspace/xcuserdata/okocsis.xcuserdatad/UserInterfaceState.xcuserstate
3,183 changes: 3,183 additions & 0 deletions Application.xib

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions ITK_graphicslib-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>ppke-itk.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 __MyCompanyName__. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>Application</string>
<key>NSPrincipalClass</key>
<string>SDLApplication</string>
</dict>
</plist>
7 changes: 7 additions & 0 deletions ITK_graphicslib-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'Beadando_1' target in the 'Beadando_1' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
Loading