Organized project to be more portable and require fewer steps to integrate into application projects in Xcode.
Moved standard assets into bundles
This commit is contained in:
30
KREngine/kraken_osx/Kraken-Info.plist
Normal file
30
KREngine/kraken_osx/Kraken-Info.plist
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string></string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.kearwood.${PRODUCT_NAME:rfc1034identifier}</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>1</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2012 Kearwood Software. All rights reserved.</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
||||
2
KREngine/kraken_osx/en.lproj/InfoPlist.strings
Normal file
2
KREngine/kraken_osx/en.lproj/InfoPlist.strings
Normal file
@@ -0,0 +1,2 @@
|
||||
/* Localized versions of Info.plist keys */
|
||||
|
||||
7
KREngine/kraken_osx/kraken-prefix.pch
Normal file
7
KREngine/kraken_osx/kraken-prefix.pch
Normal file
@@ -0,0 +1,7 @@
|
||||
//
|
||||
// Prefix header for all source files of the 'krengine_osx' target in the 'krengine_osx' project
|
||||
//
|
||||
|
||||
#ifdef __OBJC__
|
||||
#include <Cocoa/Cocoa.h>
|
||||
#endif
|
||||
13
KREngine/kraken_osx/krengine_osx.h
Normal file
13
KREngine/kraken_osx/krengine_osx.h
Normal file
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// krengine_osx.h
|
||||
// krengine_osx
|
||||
//
|
||||
// Created by Kearwood Gilbert on 12-03-15.
|
||||
// Copyright (c) 2012 Kearwood Software. All rights reserved.
|
||||
//
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
|
||||
@interface krengine_osx : NSObject
|
||||
|
||||
@end
|
||||
13
KREngine/kraken_osx/krengine_osx.mm
Normal file
13
KREngine/kraken_osx/krengine_osx.mm
Normal file
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// krengine_osx.m
|
||||
// krengine_osx
|
||||
//
|
||||
// Created by Kearwood Gilbert on 12-03-15.
|
||||
// Copyright (c) 2012 Kearwood Software. All rights reserved.
|
||||
//
|
||||
|
||||
#include "krengine_osx.h"
|
||||
|
||||
@implementation krengine_osx
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user