Add objc-runtime.h to objc headers

Some applications still include the old objc-runtime.h header expecting
to obtain the declarations contained in objc/message.h and
objc/runtime.h nowadays. This commit adds this header to achieve
out-of-the-box compatibility with these applications.
main
Daniel Ferreira 9 years ago
parent 21efe9e259
commit a3e1a0d3ed

@ -61,6 +61,7 @@ set(libobjc_HDRS
objc/objc-api.h
objc/objc-arc.h
objc/objc-auto.h
objc/objc-runtime.h
objc/objc.h
objc/runtime-deprecated.h
objc/runtime.h

@ -0,0 +1,2 @@
#include <objc/runtime.h>
#include <objc/message.h>
Loading…
Cancel
Save