aboutsummaryrefslogtreecommitdiffstats
path: root/cmake-win
blob: 25ebdfc4788b8150525f2c17410e1919acdd7ed0 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
set -e
whoami=$(basename $0)
tool=$1
mode=$2
config=${3-RelWithDebInfo}

dir=$(realpath --relative-to . $(dirname $0))
if [ "$dir" = "." ]; then
    echo 1>&2 "$whoami: run from other than the source directory."
    exit 2
fi
declare -a args
case $tool in
    msvc)
        args=(-DCMAKE_BUILD_TYPE=$config)
        if cl 2>&1 | grep -q 'for x86'; then
            args=("${args[@]}" -A win32)
        fi
        ;;
    mingw)
        args=(-G 'MSYS Makefiles' -DCMAKE_BUILD_TYPE=$config)
        ;;
    *)
        echo 1>&2 "Usage: $whoami {msvc|mingw}"
        exit 2
        ;;
esac
if [ "$mode" = "maint" ]; then
    args=("${args[@]}" -DWERROR=1 -DBUILD_STATIC_LIBS=0)
elif [ "$mode" = "ci" ]; then
    args=("${args[@]}" -DCI_MODE=1 -DINSTALL_MANUAL=1)
fi
args=("${args[@]}" -DCPACK_NSIS_MODIFY_PATH=ON)

set -x
cmake "${args[@]}" $dir
set +x
if [ "$tool" = "msvc" ]; then
    echo ""
    echo "***"
    echo "*** Remember to pass --config $config to cmake --build"
    echo "***  and -C $config to ctest"
    echo "***"
    echo ""
fi