1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages.ko/osx/xcodebuild.md
2024-10-24 18:17:43 +09:00

508 B

xcodebuild

Xcode 프로젝트 빌드. 더 많은 정보: https://developer.apple.com/library/archive/technotes/tn2339/_index.html.

  • 워크스페이스 빌드:

xcodebuild -workspace {{워크스페이스_이름.workspace}} -scheme {{스킴_이름}} -configuration {{구성_이름}} clean build SYMROOT={{SYMROOT_경로}}

  • 프로젝트 빌드:

xcodebuild -target {{대상_이름}} -configuration {{구성_이름}} clean build SYMROOT={{SYMROOT_경로}}

  • SDK 표시:

xcodebuild -showsdks