Giter VIP home page Giter VIP logo

conche's Introduction

Conche

Build Status

Conche is a Swift build system.

Installation

The easiest way to install Conche is with Homebrew:

$ brew install --HEAD kylef/formulae/conche

If you don't have Homebrew, Conche can be installed using the Makefile:

$ git clone --recursive https://github.com/Conche/Conche
$ cd Conche
$ make install

Usage

To get started with Conche, you can use conche init to create your first project.

$ conche init HelloWorld --with-tests
Initialised HelloWorld.

Conche uses the standard JSON podspec format to build your library. In your podspec you can declare the source files, and dependencies used for your project.

$ conche build
Downloading Dependencies
-> PathKit 0.5.0
-> Commander 0.5.0
Building Dependencies
-> PathKit
-> Commander
Building Conche
Building Entry Points
-> conche -> .conche/bin/conche

You can use Conche in conjunction with the Spectre BDD testing library.

$ conche test

Entry Points

If you are building a command line tool, you can add each command line tool you want to provide in the cli entry point section in your podspec.

{
  "name": "Conche",
  "version": "1.0.0",
  "source_files": "Conche/*.swift",
  "entry_points": {
    "cli": {
      "conche": "bin/conche.swift"
    }
  },
  "dependencies": {
    "Commander": [ "~> 0.5.0" ],
    "PathKit": [ "~> 0.5.0" ]
  }
}

You can execute your tool via conche after it's built.

$ conche exec <NAME>

You can install the CLI entry points to your system using Conche.

$ conche install

FAQ

I want to use Xcode.

Conche is probably not for you, I'd suggest you take a look at CocoaPods instead which offers Xcode integration. The purpose of Conche is that it is a build system separate from Xcode which can work on various platforms such as Linux.

Does Conche support Linux?

Currently it does not, however it's built with other operating systems in-mind and it would be trivial to add support for other platforms once Swift is finally opened sourced. See #7.

Can I build an OS X, iOS, watchOS, tvOS application with Conche?

Not yet, but in the future you may be able to. Only CLI tools and libraries are supported.

Why don't you support X?

Either we don't want to or we haven't got round to implementing it yet. Pull requests are welcome.

Can Conche build Conche?

Of course.

conche's People

Contributors

kylef avatar kattrali avatar readmecritic avatar

Stargazers

James Campbell avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.