Portable framework for the Objective-C language. https://objfw.nil.im
Find a file
2012-03-29 10:56:27 +02:00
generators Update generators to API changes. 2012-03-17 16:42:01 +01:00
m4 Update buildsys. 2012-03-21 21:28:49 +01:00
ObjFW.xcodeproj Add OFThreadPool. 2012-03-21 11:45:36 +01:00
src Add bridging for dictionaries. 2012-03-29 10:56:27 +02:00
tests Update buildsys. 2012-03-17 22:36:45 +01:00
utils Remove hack not necessary anymore. 2012-03-23 13:41:02 +01:00
.gitignore Make use of PACKAGE_VERSION. 2012-03-21 13:06:12 +01:00
autogen.sh Sometimes it might be desirable not to run configure. 2009-04-20 03:06:29 +02:00
buildsys.mk.in Update buildsys. 2012-03-21 12:56:44 +01:00
ChangeLog Remove remaining references to the Mercurial repo. 2012-03-20 12:26:24 +01:00
config.guess Update config.guess, config.sub and install-sh. 2009-09-17 15:40:09 +02:00
config.sub Initial PSP port. 2011-02-09 19:55:29 +01:00
configure.ac Merge branch 'master' into bridge 2012-03-27 11:42:22 +02:00
Doxyfile Don't show undocumented methods in the documentation - they're private. 2012-02-03 15:20:02 +01:00
extra.mk.in Merge branch 'master' into bridge 2012-03-27 11:42:22 +02:00
Info.plist.in Make use of PACKAGE_VERSION. 2012-03-21 13:06:12 +01:00
install-sh Update config.guess, config.sub and install-sh. 2009-09-17 15:40:09 +02:00
LICENSE.GPLv2 Change license. 2011-01-01 21:19:54 +01:00
LICENSE.GPLv3 Change license. 2011-01-01 21:19:54 +01:00
LICENSE.QPL Change license. 2011-01-01 21:19:54 +01:00
Makefile Make use of PACKAGE_VERSION. 2012-03-21 13:06:12 +01:00
PLATFORMS Update PLATFORMS. 2012-02-28 17:20:24 +01:00
README.md README.md: Quote paths in backticks. 2012-03-20 12:38:59 +01:00

ObjFW is a portable, lightweight framework for the Objective C language. It enables you to write an application in Objective C that will run on any platform supported by ObjFW without having to worry about differences between operating systems or various frameworks that you would otherwise need if you want to be portable.

See https://webkeks.org/objfw for more information.

Installation

To install ObjFW, just run the following commands:

$ ./configure
$ make
$ make install

In case you checked out ObjFW from the Git repository, you need to run the following command first:

$ ./autogen.sh

Building as a Mac OS X framework

It is also possible to build ObjFW as a Mac OS X framework. To do so, just execute xcodebuild -target ObjFW in the root directory of ObjFW or open the .xcodeproj in Xcode and choose Build -> Build from the menu. Copy the resulting ObjFW.framework to /Library/Frameworks and you are done.

Using the Mac OS X framework in Xcode

To use the Mac OS X framework in Xcode, you need to add the .framework to your project and add the following flags to "Other C Flags":

-fconstant-string-class=OFConstantString -fno-constant-cfstrings

Optionally, if you want to use blocks, you also need to add:

-fblocks

Bugs and feature requests

If you find any bugs or have feature requests, feel free to send a mail to js-spam@webkeks.org (remove -spam from the address!).