Jas_meet
Jas_meet

Reputation: 366

how to build iOS project in windows system using xcodebuild command line tool

I want to build my project in windows system using xcodebuild command line tool

xcodebuild build-for-testing test-without-building -project /xxx/xxxx/xx/xxxx.xcodeproj -scheme xxxx -destination id=UDIDOfDevice

but it gives error : 'xcodebuild>' is not recognized as an internal or external command.

Same command work in macOS

Upvotes: 2

Views: 2497

Answers (1)

Michael Hulet
Michael Hulet

Reputation: 3494

xcodebuild is packaged with Xcode, which is a macOS-only app. Thus, xcodebuild is also macOS-only. You cannot build an iOS app on Windows with xcodebuild

Upvotes: 2

Related Questions