I have a framework that I need to build manually as a part of my run-script in xcode.
How can I copy the build setting from the current project when building it?
xcodebuild
-project "$PROJECT_DIR/myProject/MyProject.xcodeproj"
-scheme MyProject
-configuration "$MY_PROJECT_CONFIGURATION"
CONFIGURATION_BUILD_DIR="$APP_BUILD_DIR"
build
I'm specifically having problem matching -destination
. Is there a way to get the -destination used to build the current project and pass it to xcodebuild