Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jawngee/commandlinekit
Framework for building sane command line tools in Cocoa.
https://github.com/jawngee/commandlinekit
Last synced: 21 days ago
JSON representation
Framework for building sane command line tools in Cocoa.
- Host: GitHub
- URL: https://github.com/jawngee/commandlinekit
- Owner: jawngee
- License: bsd-2-clause
- Created: 2014-02-10T19:22:09.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-07T18:23:08.000Z (over 10 years ago)
- Last Synced: 2025-01-19T22:13:46.039Z (26 days ago)
- Language: Objective-C
- Size: 180 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CommandLineKit
==============Framework for building sane command line tools in Cocoa.
Installation
---------------
From the command line:`git clone --recursive https://github.com/jawngee/CommandLineKit.git`
Creating a Command Line App
------------------------------------------- Create a new Command Line Tool in Xcode
- Drag the CommandLineKit.xcodeproj to your new project
- In build phases:
- In target dependencies add 'CommandLineKit'
- In link phase, add 'libCommandLineKit.a'
- In build settings:
- In other linker flags, add -ObjC
- In header search path, add the path to CommandLineKit sourceView the *HelloWorld* sample application for details on how to create your command line application.
Special Thanks
--------------
Special thanks to [NSError](https://github.com/NSError) for his awesome [ArgumentParser](https://github.com/NSError/ArgumentParser) library.No CocoaPods?
-------------
I don't use CocoaPods for a lot of different reasons, mostly because I almost always end up forking and changing the libraries I'm using. I'm also not afraid of git submodules.If someone wants to add this to CocoaPods, I will gladly accept your pull request though. :)