Where are ${EXECUTABLE_NAME} and ${PRODUCT_NAME} defined

前端 未结 2 1652
孤街浪徒
孤街浪徒 2020-12-12 17:11

Where can I find information on how to modify these

  • ${EXECUTABLE_NAME}
  • ${PRODUCT_NAME}

These are only displa

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-12 17:14

    The PRODUCT_NAME is defined in the target's Build Settings in the Packaging section. It has the same name by default as your project.

    Edit:

    While PRODUCT_NAME is by default the name of the Target (MyDemoApp in this case). The EXECUTABLE_NAME is a concatenation of:

    $EXECUTABLE_PREFIX, $PRODUCT_NAME and $EXECUTABLE_SUFFIX.

    See the reference of EXECUTABLE_NAME for details.

    Update

    The new reference can be found here http://help.apple.com/xcode/mac/8.3/#/itcaec37c2a6

    EXECUTABLE_NAME
    Specifies the name of the binary the target produces.

提交回复
热议问题