summary refs log tree commit diff
path: root/pkgs/development/tools/xcbuild/setup-hook.sh
blob: 70100c196973e1e67c323765de8dffd2410bb991 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
xcbuildBuildPhase() {
    export DSTROOT=$out

    runHook preBuild

    echo "running xcodebuild"

    xcodebuild SYMROOT=$PWD/Products OBJROOT=$PWD/Intermediates $xcbuildFlags build

    runHook postBuild
}

xcbuildInstallPhase () {
    runHook preInstall

    # not implemented
    # xcodebuild install

    runHook postInstall
}

if [ -z "$dontUseXcbuild" ]; then
    buildPhase=xcbuildBuildPhase
    if [ -z "$installPhase" ]; then
        installPhase=xcbuildInstallPhase
    fi
fi

# if [ -d "*.xcodeproj" ]; then
#     buildPhase=xcbuildPhase
# fi