Add tizen40 TFM supports
[platform/core/csapi/tizenfx.git] / build.sh
1 #!/bin/bash
2
3 SCRIPT_FILE=$(readlink -f $0)
4 SCRIPT_DIR=$(dirname $SCRIPT_FILE)
5
6 # Properties
7 OUTDIR=$SCRIPT_DIR/Artifacts
8 NUGET_CMD="mono $SCRIPT_DIR/tools/NuGet.exe"
9
10 usage() {
11   echo "Usage: $0 [options] [args]"
12   echo "    Options:"
13   echo "        -h, --help            Show this usages message"
14   echo "        -b, --build [module]  Build a module"
15   echo "        -f, --full            Build all modules in src/ directory. (pkg/Tizen.NET.Private.sln)"
16   echo "        -d, --dummy           Build dummy modules"
17   echo "        -p, --pack            Make nuget packages"
18   echo "        -c, --clean           Clean all artifacts"
19 }
20
21 dotnet_build() {
22   if [ -d /nuget ]; then
23     NUGET_SOURCE_OPT="--source /nuget"
24   fi
25   PROJ=$1; shift
26   dotnet restore $PROJ $NUGET_SOURCE_OPT
27   dotnet build $PROJ --no-restore --configuration=Release $@
28 }
29
30 cmd_clean() {
31   rm -fr $OUTDIR
32   LIST=$(find $SCRIPT_DIR -type d -a -name bin -o -name obj)
33   for d in $LIST; do
34     rm -fr $d
35   done
36 }
37
38 cmd_build() {
39   if [ -z "$1" ]; then
40     echo "No module specified."
41     exit 1
42   fi
43   dotnet_build $SCRIPT_DIR/src/$1 --output=$OUTDIR/bin
44 }
45
46 cmd_full_build() {
47   dotnet_build $SCRIPT_DIR/pkg/Tizen.NET.Private.sln --output=$OUTDIR/bin
48 }
49
50 cmd_pack() {
51   VERSION_FILE=$OUTDIR/Version.txt
52   if [ -f $VERSION_FILE ]; then
53     NUGET_VERSION_PREFIX=$(cat $VERSION_FILE | grep Prefix | cut -d: -f2 | sed 's/\r$//')
54     NUGET_VERSION_SUFFIX=$(cat $VERSION_FILE | grep Suffix | cut -d: -f2 | sed 's/\r$//')
55           NUGET_VERSION_OPT="-Version $NUGET_VERSION_PREFIX-$NUGET_VERSION_SUFFIX"
56   fi
57   $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.Private.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $SCRIPT_DIR -OutputDirectory $OUTDIR
58   $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $SCRIPT_DIR -OutputDirectory $OUTDIR
59 }
60
61 cmd_dummy_build() {
62   dotnet_build $SCRIPT_DIR/pkg/Tizen.NET.Dummy.csproj
63 }
64
65 OPTS=`getopt -o hcbfpd --long help,clean,build,full,pack,dummy -n 'build' -- "$@"`
66 if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; usage; exit 1 ; fi
67 eval set -- "$OPTS"
68
69 FLAG_HELP=false
70 FLAG_FULL=false
71 FLAG_BUILD=false
72 FLAG_CLEAN=false
73 FLAG_DUMMY=false
74 FLAG_PACK=false
75
76 while true; do
77   case "$1" in
78     -h|--help) FLAG_HELP=true; shift ;;
79     -b|--build) FLAG_BUILD=true; shift ;;
80     -f|--full) FLAG_FULL=true; shift ;;
81     -d|--dummy) FLAG_DUMMY=true; shift ;;
82     -p|--pack) FLAG_PACK=true; shift ;;
83     -c|--clean) FLAG_CLEAN=true; shift ;;
84     --) shift; break ;;
85     *) break ;;
86   esac
87 done
88
89 if $FLAG_HELP; then usage; exit 0; fi
90 if $FLAG_CLEAN; then cmd_clean; exit 0; fi
91 if $FLAG_FULL; then cmd_full_build; exit 0; fi
92 if $FLAG_BUILD; then cmd_build $@; exit 0; fi
93 if $FLAG_PACK; then cmd_pack $@; exit 0; fi
94 if $FLAG_DUMMY; then cmd_dummy_build; exit 0; fi
95
96 usage;