From a3e1a0d3ed7057936637eba7e4f76ba8d0a777f5 Mon Sep 17 00:00:00 2001 From: Daniel Ferreira Date: Wed, 31 May 2017 20:49:15 -0300 Subject: [PATCH] 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. --- CMakeLists.txt | 1 + objc/objc-runtime.h | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 objc/objc-runtime.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 16b42a7..321a9f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/objc/objc-runtime.h b/objc/objc-runtime.h new file mode 100644 index 0000000..4599f08 --- /dev/null +++ b/objc/objc-runtime.h @@ -0,0 +1,2 @@ +#include +#include