Hello! I am trying to build a multiplatform projec...
# multiplatform
m
Hello! I am trying to build a multiplatform project (with iOS target) on a MacBook without XCode installed. In my case iOS build is expected only on CI server with XCode installed. Is there common way to check that build tools are installed on host OS? Now local build fails because cannot find XCode command line tools..
Copy code
// something like that:
kotlin { 
   jvm {}
   if (hostHasXcode) 
       iosArm64()
   //... 
}
h
You could use Gradle exec to execute a check.
b
Wasn't kdoctor written exactly to help with that?
x