navige
navige

Reputation: 2517

Develop PostgreSQL in XCode

Some months ago I started developing on the PostgreSQL source code on a Windows machine. Developing on Windows worked like charm, especially thanks to Visual Studio.

Since I got a new Mac, I wanted to use XCode for development. However, I don't get it running with PostgreSQL:

How do I create an appropriate project file for developing XCode on Mac and also set all targets appropriately?

Upvotes: 3

Views: 4319

Answers (1)

Jeremiah Smith
Jeremiah Smith

Reputation: 740

There are many different uses for PostgreSQL in XCode

1) One is to link library and start writing apps around PostgreSQL library:

http://macbug.org/macosxsample/postgresql

2) Another way would be to create iOS Apps with PostgreSQLKit:

http://www.postgresqlformac.com/lists/downloads/pgsqlkit-2/

3) Lastly various other assorted projects (including embedding the server):

http://cocoadev.com/PostgreSQL

23 Apr 2017: The newest guide is available here: http://druware.tumblr.com/post/112163075395/getting-started-with-pgsqlkit-and-swift

Upvotes: 2

Related Questions