-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brian Ondov
committed
Jul 18, 2014
1 parent
565d37c
commit c93557c
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Gingr is normally distributed as a dependency-free Linux binary or OS X app. | ||
This source distribution is intended for other operating systems or for | ||
development. | ||
|
||
|
||
Dependencies: | ||
------------- | ||
- Qt4 >= 4.8 ( http://qt-project.org/downloads ) | ||
- Harvest tools ( https://github.com/marbl/harvest-tools ) | ||
- Protocol Buffers ( https://code.google.com/p/protobuf/ ) | ||
- Zlib ( http://www.zlib.net/ ) | ||
- XCode ( OS X only, https://developer.apple.com/xcode/ ) | ||
|
||
|
||
Setup: | ||
------ | ||
./configure [--with-harvest=...] [--with-protobuf=...] | ||
qmake | ||
|
||
Notes: The --with-harvest and --with-protobuf options specify the top-level | ||
directory of their respective installations, eg. without "/bin" or "/lib", and | ||
default to /usr/local. | ||
|
||
|
||
Building (Linux): | ||
----------------- | ||
|
||
Build: | ||
make | ||
|
||
Product: | ||
gingr (executable) | ||
|
||
Deployment: | ||
gingr relies on Qt libraries, which can be included statically during | ||
Setup by calling qmake from a static Qt installation (which must be in a | ||
separate location from any dynamic Qt installations to avoid library | ||
ambiguities). | ||
|
||
|
||
Building (OS X): | ||
---------------- | ||
|
||
Build: | ||
[Open gingr.xcodeproj in XCode and build] | ||
|
||
Product: | ||
gingr.app (location depends on XCode settings) | ||
|
||
Deployment: | ||
'macdeployqt gingr.app' will bundle Qt frameworks in the App. |