Commit a6ccd98a authored by Eloy Durán's avatar Eloy Durán

[Cleanup] Move constant closer to code that uses it.

parent d931a75a
......@@ -89,11 +89,6 @@ module Pod
library.target = @target
end
ENABLE_OBJECT_USE_OBJC_FROM = {
:ios => Version.new('6'),
:osx => Version.new('10.8')
}
# Adds the build files of the pods to the target and adds a reference to
# the frameworks of the Pods.
#
......@@ -314,6 +309,11 @@ module Pod
support_files_group.new_file(relative_path)
end
ENABLE_OBJECT_USE_OBJC_FROM = {
:ios => Version.new('6'),
:osx => Version.new('10.8')
}
# Returns the compiler flags for the source files of the given specification.
#
# The following behavior is regarding the `OS_OBJECT_USE_OBJC` flag. When
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment