How to change output directory for a target

前端 未结 7 1782
执笔经年
执笔经年 2020-12-13 12:12

I am using a workspace where I have a main app project and then a static library project which is used by the main app. I want static library project to spit out libX.a into

相关标签:
7条回答
  • 2020-12-13 12:45

    Another way to do this is to edit Build Locations > Per-configuration Build Products Path in your target's Build Settings.

    0 讨论(0)
  • 2020-12-13 12:46

    Here's a solution you can check into source control, and which I've verified works with Xcode 6.2.

    1. Add a .xcconfig file to your project - see this SO question for details.
    2. In the .xcconfig file, specify the Xcode standard environment variables PROJECT_TEMP_DIR, CONFIGURATION_BUILD_DIR, and BUILT_PRODUCTS_DIR to point to where you want files to wind up.

    Reading Apple's xcconfig format reference, it would seem that simply overriding OBJROOT and SYMROOT in the .xcconfig file would do the trick - but in my testing on Xcode 6.2, changing them has no effect. You have to change those three specific environment variables listed above.

    This is what I put in an Xcode 6.2 .xcconfig file so intermediate files and executables go into their "traditional" locations:

    // Intermediate build files go here
    PROJECT_TEMP_DIR = $(SRCROOT)/build/$(PROJECT_NAME).build
    
    // Build-related files for the active build configuration go here
    CONFIGURATION_BUILD_DIR = $(SRCROOT)/build/$CONFIGURATION
    
    // The final product executables and other build products go here
    BUILT_PRODUCTS_DIR = $(SRCROOT)/build/$CONFIGURATION
    

    Don't forget to add the xcconfig file to a Deployment Target -> Configurations to make it work (Click on the Project, Under Info, in the Deployment Target Section under Configurations

    0 讨论(0)
  • 2020-12-13 13:00

    According to @gp-coder, the scenario will be following for xcode 9.* Follow the step as given in the picture

    And Do Done

    Thats all, Thanks

    0 讨论(0)
  • 2020-12-13 13:04

    Updated instructions for Xcode 5 up to 6.3.

    1. Go to File -> Project settings
    2. Click the Advanced button
    3. Click Done, then Done once more.

    And you are done!

    0 讨论(0)
  • 2020-12-13 13:04

    If you want to change build path of your project you can change using following steps.

    1) Choose Xcode > Preferences, and click Locations.

    2) Click the Advanced button for the Derived Data setting.

    3) Select a build location from the available options, and click Done.

    ex. if you choose 'Custom' from Build Location option your build will be generate at '/Users/XYZ/Desktop/Build/Products' Location

    0 讨论(0)
  • 2020-12-13 13:04

    In Xcode 8.x I set the derivedData directory with a command line option in a .sh file that builds the project. Developers can build into their user directories (default Xcode preference), while the official build creates the build in the traditional area:

    SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

    xcodebuild -workspace 'my project.xcworkspace' -scheme 'my project' -configuration Release -derivedDataPath '$SCRIPT_DIR/build'

    0 讨论(0)
提交回复
热议问题