cocoapods - How to specify output dir name for ios simulator when using xcodebuild cli in combination with a xcworkspace? -


i build xcode (6.3.1) project uses workspace because i'm using pods.

when do:

xcodebuild \     build \     -workspace myproject.xcworkspace \     -scheme myproject \     -configuration debug \     -sdk iphonesimulator \     -archs=i386 \     valid_archs=i386 \     symroot="/tmp/build/emulator" \     shared_precomps_dir="/tmp/build/sharedpch" 

it outputs app to:

/tmp/build/emulator/debug-iphonesimulator/myproject.app 

is there way xcodebuild command build to

/tmp/build/emulator/myproject.app 

i have tried replace symroot with

configuration_build_dir="/tmp/build/emulator" 

now builds to

/tmp/build/emulator/monsenso.app 

but not work smoothly cocoapods frameworks (e.g. typhoon di) ~ build fails with:

the following build commands failed:         generatedsymfile /tmp/build/emulator/typhoon.framework.dsym /run/emulator/typhoon.framework/typhoon 


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -