Skip to content

Instantly share code, notes, and snippets.

@henrypoydar
Created August 20, 2009 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrypoydar/171459 to your computer and use it in GitHub Desktop.
Save henrypoydar/171459 to your computer and use it in GitHub Desktop.
# Build ...
$ tar -xvf libical-0.43.tar
$ cd libical-0.43
$ ./configure prefix=/usr/local
$ make
$ sudo make install
# Then follow these instructions to update the search paths in your project
# From http://www.jtbullitt.com/projects/tech/how-to-import-libsndfile-into-a-project
Project → Edit Project Settings
Click “Build”
In “Collection” popup, select “Search Paths”
Double-click “Header Search Paths” and add the path /usr/local/include if it’s not already listed there. Leave the “Recursive” checkbox unchecked.
Click “OK”.
Double-click “Library Search Paths” and add the path /usr/local/lib if it’s not already listed there. Leave the “Recursive” checkbox unchecked.
Click “OK”
Close the Project Info window.
Add the library to your project:
In the project window, select the project icon in the “Groups and Files” pane.
Project → Add to Project… (or control-click the project icon).
Navigate to the library you wish to include (probably libical.a.) Click “Add.”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment