How to run "make install" from Xcode

I have a custom Makefile and External build target in Xcode. When I click "Build", it launches "make", When I click "Clean", it runs "make clean"

How to run "make install" (or any other target) from Xcode?

(btw, this is an AVR project and the xcode project file was created using the avr-project tool that comes with Crosspack-AVR)

+3
source share
2 answers
$xcodebuild install

from the command line in the project directory, like make.

+4
source

you can create a new external target and install make install or xcodebuild install

0
source

Source: https://habr.com/ru/post/1741580/


All Articles