biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / xcbuild / setup-hook.sh
blobf4b5abf2d8d388c6874c441710d910dfdd61e187
1 xcbuildBuildPhase() {
2 export DSTROOT=$out
4 runHook preBuild
6 echo "running xcodebuild"
8 xcodebuild SYMROOT=$PWD/Products OBJROOT=$PWD/Intermediates $xcbuildFlags build
10 runHook postBuild
13 xcbuildInstallPhase () {
14 runHook preInstall
16 # not implemented
17 # xcodebuild install
19 runHook postInstall
22 buildPhase=xcbuildBuildPhase
23 if [ -z "${installPhase-}" ]; then
24 installPhase=xcbuildInstallPhase
27 # if [ -d "*.xcodeproj" ]; then
28 # buildPhase=xcbuildPhase
29 # fi