This command can generate makefile to build xcode project in command line just like <configure & make & make install> in C/C++ language world. Use it you can build xcode project very easy. See follow.
- Support ipa
- Support framework
- Support static library
- Build xcode project more easily.
- Combine thirdpart library more easily.
-
Config * 1. Download xcode-configure to local and add to environment or alias like me follow
alias xcode-configure=/Users/starnet/Projects/xcode-configure/xcode-configure
you can also add to ~/.bash_profile
-
- Go to the xcode project root directory and type
xcode-configure
- Go to the xcode project root directory and type
-
-
Usage
USAGE: xcode-configure [-t|--target] [-v|--version] [-h|--help] [-s|--enable-simulator] [-d|--enable-debug] [-p|--prefix ]
- show version
xcode-configure -v
- show targets
xcode-configure -t
- show help
xcode-configure -h
- config for debug mode
xcode-configure -d
- support simulator
xcode-configure -s
- assign a install directory
xcode-configure -p PATH
- build all targets (you can use
xcodebuild -list
to show all scheme)
make
- build a special target, like
test
make test
- install all target
make install
- install a special target, like
test
make test-install
- clean all targets
make clean
- clean a special target, like
test
make test-clean
This command follow MIT License.
If you has any problem with use it, you can contact me. My E-mail is smallmuou@163.com