Compiling Textual IRC Client With Xcode

The following guide explains how to compile the Textual IRC client from the source code available on GitHub. Textual is an excellent IRC client and I strongly recommend purchasing it from the App Store. However, it is an open source project and the code is freely available. If you want to give the application a try before purchasing it, these instructions should help.

This guide was put together because I had a bit of difficulty figuring out how to get the latest version of Textual to compile with Xcode 5. I had built earlier versions with Xcode 4, but code signing seems to be more strongly enforced now. If you already have a paid developers license, you can just sign the project with your developer profile. However, if you don't have a paid developers license, this guide will explain how to create a personal certificate to self-sign the application to run on your own Mac.

Requirements:

Note: The versions listed above are those that were used when this guide was written. The same procedure can likely be used with older or newer versions of each item. Several of the guides I found were specific to a particular SDK or Xcode version, so these are listed for convenience only.

Creating A Self-Signing Certificate:

  1. Open the Keychain Access utility. This can be found in "/Applications/Utilities/".

  2. Within the "Keychain Access" menu, select "Certificate Assistant", then select "Create a Certificate...".

Create Certificate Menu
  1. In the Certificate Assistant window, enter a name for the certificate, select "Self Signed Root" as the Identity Type, and select "Code Signing" as the Certificate Type.

Create Certificate
  1. Click the "Create" button.

Note: The above steps only need to be performed once. After you create a self-signing certificate, it can be re-used whenever you need to rebuild Textual or build any other application which requires code signing.

Downloading Textual Source From GitHub:

    1. Open Terminal on the OS X system where the application will be built.

    2. Use the git utility to download the Textual source code:

    3. # mkdir -p ~/Documents/Git/

    4. # cd ~/Documents/Git/

    5. # git clone git://github.com/Codeux/Textual.git

Compiling Textual With Self-Signed Certificate:

    1. Open the Textual project in Xcode. If the above instructions were followed, it will be located in "~/Documents/Git/Textual/".

    2. In the Project Navigator, navigate to Resources > Build Settings > Configurations > Code Signing Identity.xcconfig.

Code Signing Identity
    1. In the "Code Signing Identity.xcconfig" file, change the value from "Developer ID Application" to the name of the self-signed certificate you created above.

New Signing Identity
    1. In the Product > Scheme menu, select "Textual (Standard Release)"

Build Scheme Menu
    1. Build the application (⌘-B).

After performing the above steps, the Textual application should be compiled and available for use. The binary should be available in "~/Documents/Git/Textual/Build Results/Release/". This can be copied to the "Applications" directory or any other desired location.