Skip to content

Commit

Permalink
Added steps for compiling single executable binary on OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Jul 31, 2014
1 parent 2626129 commit e801a78
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,24 @@ SQLite Database Browser works well on MacOS X.

* OSX 10.7 (Lion), 10.8 (Mountain Lion) and 10.9 (Mavericks) are tested and known to work

Building on OSX is simple, but requires SQLite and Qt 4.8.x to be installed
first. These are the Homebrew steps, though other package managers should
work:
It can be compiled to a single executable binary file, similar to other command line
utilities. Or it can either be compiled to a .app bundle, suitable for placing in
/Applications.

### Compiling to a single executable binary

This is incredibly easy using [Homebrew](http://brew.sh). Just run this command:

$ brew install sqlitebrowser

And you're done. A "sqlitebrowser" command should now available in your PATH, and can
also be launched through Spotlight.

### Compiling to a .app bundle

Building the .app bundle version takes a bit more effort, but isn't too hard. It
requires SQLite and Qt 4.8.x to be installed first. These are the
[Homebrew](http://brew.sh) steps, though other package managers should work:

$ brew install sqlite --with-functions --without-readline
$ brew install qt
Expand Down

0 comments on commit e801a78

Please sign in to comment.