I have a project in Xcode that contains multiple targets. One of these builds a sync schema bundle, and another one builds a Foundation command-line tool that initiates a sync session using the schema defined in the bundle.
The schema bundle template creates Schema-strings.h
and Schema-strings.m
files, which contain constants for data class names, entity names, and attribute names, and I'd like to use these constants in my command-line tool's code.
How do I configure the targets to make this possible?