https://github.com/ronflima/simplebuild
Simple build system for Xcode based projects
https://github.com/ronflima/simplebuild
automation xcode
Last synced: about 2 months ago
JSON representation
Simple build system for Xcode based projects
- Host: GitHub
- URL: https://github.com/ronflima/simplebuild
- Owner: ronflima
- License: mit
- Archived: true
- Created: 2017-03-22T23:00:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T00:38:32.000Z (over 7 years ago)
- Last Synced: 2025-02-18T04:52:16.796Z (3 months ago)
- Topics: automation, xcode
- Language: Makefile
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleBuild
Simple build is a small set of Makefiles that are intended to automate Xcode
builds from the command line. Its design goal is to use simple tools to achieve
common build tasks like unit testing, coverage, archiving and app store
submission.Since it is actually a Makefile, it let you use common tools already installed
on your macOS system. Its makefile is based on GNU Make 3.81 that is already
installed on your macOS system.# Why SimpleBuild?
GNU Build system is on the market for years. It is pretty stable and works
pretty fine. For a standalone build, it is more than useful.# How to use it?
Install the Makefile on your project directory. Create a _project.mk_ file with
your project's definitions and you are set. You can customize the Makefile
behavior by creating your own rules on _project.mk_.Be sure to have both files _Makefile_ and _project.mk_ on the same directory of
your workspace or project bundles.# License
This project is released under [MIT License](LICENSE).