Enable OBJC_OLD_DISPATCH_PROTOTYPES

This commit is contained in:
Ariel Abreu 2020-09-01 10:04:34 -04:00
parent 399f8bcb76
commit 890e51fda9
No known key found for this signature in database
GPG Key ID: ECF8C2B9E8AD3E6B

View File

@ -10,6 +10,12 @@ include_directories(
${PC_DBUS_INCLUDE_DIRS}
)
add_compile_definitions(
# tells the objc API headers to use the generically-typed function declarations for `objc_msgSend` and friends
# (Apple really wants people to cast the functions before using them)
OBJC_OLD_DISPATCH_PROTOTYPES=1
)
set(DBusKit_sources
Source/DKArgument.m
Source/DKBoxingUtils.m